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.
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: