Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hey
I have a visual showing the minimum and maximum temperatures over a 3 year period. I've created a measure that calculates the average 5 year minimum temperatures. I don't want to effect the calculation of the meausre, but only require the measure to be shown from October 1, 2024 as the average data before this period isn't required and I think it'll clean the visual up a little bit.
Any insight on how to accomplish this before my laptop ends up smashed on the ground (joking).
Solved! Go to Solution.
a measure that calculates the average 5 year minimum temperatures
That's not what your measure does
only require the measure to be shown from October 1, 2024
Add an IF statement
Measure = IF(max('4A - ENVIRONMENT CANADA'[DATE])>dt"2024-10-01"),result)
How are you planning to collect temperatures from the future? 🙂
a measure that calculates the average 5 year minimum temperatures
That's not what your measure does
only require the measure to be shown from October 1, 2024
Add an IF statement
Measure = IF(max('4A - ENVIRONMENT CANADA'[DATE])>dt"2024-10-01"),result)
How are you planning to collect temperatures from the future? 🙂