Forum Discussion
Two34
7 years agoFrequent Visitor
If date is between 2 dates that sum
Hello, I have two tables one that has start date, end date , average value per day and the other that has Calendar. I want to create a column in the calendar table with the total averages per da...
- 7 years ago
try this (not tested but it should work)
=
CALCULATE (
SUM ( 'Table1'[Avg per Date] ),
'Table1'[Start date] <= EARLIER ( 'Calendar'[Date] ),
'Table1'[End Date] >= EARLIER ( 'Calendar'[Date] )
)
LivioLanzo
7 years agoSolution Sage
try this (not tested but it should work)
=
CALCULATE (
SUM ( 'Table1'[Avg per Date] ),
'Table1'[Start date] <= EARLIER ( 'Calendar'[Date] ),
'Table1'[End Date] >= EARLIER ( 'Calendar'[Date] )
)
Two34
7 years agoFrequent Visitor
Thanks for the help!