Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I'm new to DAX and I need a measure (or a calculated column) that would accumulate a sum within a loop of days.
My problem is quite simple: I have 5 minuts increments readings of rainfall.
I want to plot the daily cumulative rainfall.
As I said, I am very new to DAX and I can't figure it out.
What I have here is an hourly filter that shows me the fist day correctly, but after that, it carries the hourly values to the next days. (The green line indicates if there has been rain or not)
@LSatPD - It appears that ALLSELECTED function is causing all of the days to be considered. I think that instead of ALLSELECTED(LTU_Rain_Date), you could use ALL(LTU_Rain_Date[Time_Hour]). So instead of considering all days, you consider all hours and then limit hours to only the current hour or prior.
Also, it is preferable to store MAX(LTU_Rain_Date[Time_Hour]) in a variable and then use it.
var current_hour = MAX(LTU_Rain_Date[Time_Hour]) return CALCULATE(........LTU_Rain_Date[Time_Hour] < current_hour.....)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.