Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Napes001
Regular Visitor

Column A Sum based on Column B Dates

Im trying to get the measure sum of a column from a table by the dates of the second column and display as sum which is then filtered by the date calander. 

Example: 

Ordered AmountDelivery Date
$100 
$15001-01-2023
$7515-02-2023
$20 
$25 
$10020-01-2023

 

The return should be $325, Which then should be able to be filtered down further by a slicer date table.

 

thanks 

 

1 ACCEPTED SOLUTION

hi @Napes001 ,

 

try to plot the month column with a measure like:

measure = 
CALCULATE(
    SUM(data[Ordered Amount]),    
    data[Delivery Date]<>BLANK()
)

 

it worked like:

FreemanZ_1-1699441887697.png

 

View solution in original post

5 REPLIES 5
Napes001
Regular Visitor

I figured out the issue, I had an inactive date relationship. Added in the USERELATIONSHIP and it now works correctly. thank you for your help. 

Napes001
Regular Visitor

The table columns are similar to the above table with blank dates. The expected result would be: SUM of "Ordered Amount" with dates. 


So based on the table on the original post, My expectation is that the result would be $325 - only sum of Ordered Amoiunt that has delivery dates.

 

This would then be able to be filtered with the Date calander. IE: Filter by Jan 2023 = $250, Feb = $75 = March = $0.00, etc

 

I hope this makes sense?

 

hi @Napes001 ,

 

try to plot the month column with a measure like:

measure = 
CALCULATE(
    SUM(data[Ordered Amount]),    
    data[Delivery Date]<>BLANK()
)

 

it worked like:

FreemanZ_1-1699441887697.png

 

Thanks @FreemanZ, This appears to be working to an extent. But when I try and filter with my Calander table it wont show anything past 'todays' data?

If I dont filter, it shows the total correctly of past, present and future. I have added a image to hopefully clarify. I appreacitate your help, This is all a new learningtable example-01.jpg

 

FreemanZ
Super User
Super User

hi @Napes001 ,

 

could you say more about your expectation, ideally with expected result table?

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors