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.
Dear all,
I created a measure that returns a date (Waiting Period Ends); I need to generate another measure that returns the start of the following month respecting Waiting Period Ends.
Solved! Go to Solution.
@FelipeScheihing Try:
Measure =
VAR __EOM = EOMONTH([Waiting Period Ends],1)
VAR __Result = DATE(YEAR(__EOM), MONTH(__EOM), 1)
RETURN
__Result
Also, time intelligence functions are evil. You may find this helpful - https://community.powerbi.com/t5/Community-Blog/To-bleep-With-Time-Intelligence/ba-p/1260000
Also:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Time-Intelligence-quot-The-Hard-Way-quot-TIT...
@FelipeScheihing Try:
Measure =
VAR __EOM = EOMONTH([Waiting Period Ends],1)
VAR __Result = DATE(YEAR(__EOM), MONTH(__EOM), 1)
RETURN
__Result
Also, time intelligence functions are evil. You may find this helpful - https://community.powerbi.com/t5/Community-Blog/To-bleep-With-Time-Intelligence/ba-p/1260000
Also:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Time-Intelligence-quot-The-Hard-Way-quot-TIT...
@Greg_Deckler, thank you so much! it worked perfectly! I will check the material you shared.