Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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.
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
24 | |
19 | |
14 | |
10 | |
7 |