Forum Discussion
Napes001
2 years agoRegular 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 Amount Deliver...
- 2 years ago
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
Super User
2 years agohi Napes001 ,
try to plot the month column with a measure like:
measure =
CALCULATE(
SUM(data[Ordered Amount]),
data[Delivery Date]<>BLANK()
)
it worked like:
Napes001
2 years agoRegular Visitor
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 learning
.