The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi, I am trying to create a slicer that will show data for a current month and YTD for the finacial year starting in April, the current month is defined from a table named Current Month that contians the dd,mmmm,yyyy I wish to use for the calculations. I have tried to amend the following DAX but can not get it to work.
Current Month/YTD =
var TODAYDATE=TODAY() var CurrrentMonth = CALCULATE(STARTOFMONTH('Current Month'[Month])=YEAR(TODAYDATE))
var YearStart= DATE(YEAR(TODAYDATE),4,1)
VAR result=
UNION(ADDCOLUMNS(CALENDAR(YearStart,CurrrentMonth),"Selection","YTD"), ADDCOLUMNS(CALENDAR(CurrrentMonth,CurrrentMonth),"selection","Current Month"))
return result
Solved! Go to Solution.
@MHK32 You may find this helpful - https://community.powerbi.com/t5/Community-Blog/To-bleep-With-Time-Intelligence/ba-p/1260000
Also, see if my Time Intelligence the Hard Way provides a different way of accomplishing what you are going for.
https://community.powerbi.com/t5/Quick-Measures-Gallery/Time-Intelligence-quot-The-Hard-Way-quot-TIT...
You might also find this useful:
@MHK32 You may find this helpful - https://community.powerbi.com/t5/Community-Blog/To-bleep-With-Time-Intelligence/ba-p/1260000
Also, see if my Time Intelligence the Hard Way provides a different way of accomplishing what you are going for.
https://community.powerbi.com/t5/Quick-Measures-Gallery/Time-Intelligence-quot-The-Hard-Way-quot-TIT...
You might also find this useful:
User | Count |
---|---|
11 | |
8 | |
6 | |
6 | |
6 |
User | Count |
---|---|
24 | |
14 | |
13 | |
10 | |
7 |