March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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 day.
For example in case of 02-Feb i need to look in all the rows where 02-Feb is in between [Start Date-End Date) and sum the Avg per Day.
I tried the formula in the print screen but I got an error.
Many Thanks
Solved! Go to Solution.
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] )
)
Did I answer your question correctly? Mark my answer as a solution!
Proud to be a Datanaut!
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] )
)
Did I answer your question correctly? Mark my answer as a solution!
Proud to be a Datanaut!
Thanks for the help!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
134 | |
91 | |
89 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
72 | |
68 |