Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
I want this code to work for the date I select: eg: If I select 14th feb then click on MTD option from this slicer it will display the values from 1st feb to 14th feb in all visuals.
MTD/QTD/YTD =
VAR TodayDate= TODAY()
VAR YEARSTART = CALCULATE(STARTOFYEAR(ff[Trip Date]),YEAR(ff[Trip Date])=YEAR(TodayDate))
VAR QUATERSTART = CALCULATE(STARTOFQUARTER(ff[Trip Date]),YEAR(ff[Trip Date])=YEAR(TodayDate),QUARTER(ff[Trip Date])=QUARTER(TodayDate))
VAR MONTHSTART = CALCULATE(STARTOFMONTH(ff[Trip Date]),YEAR(ff[Trip Date])=YEAR(TodayDate),MONTH(ff[Trip Date])=MONTH(TodayDate))
var result=
UNION(
ADDCOLUMNS(
CALENDAR(YEARSTART,TodayDate),
"Selection","YTD"
),
ADDCOLUMNS(
CALENDAR(QUATERSTART,TodayDate),
"Selection","QTD"
),
ADDCOLUMNS(
CALENDAR(MONTHSTART,TodayDate),
"Selection","MTD"
))
return result
this can be depolyed by calculation groups or page filters. that depends on your sepcific needs.
Can you share the DAX code ?
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
22 | |
21 | |
20 | |
14 | |
11 |
User | Count |
---|---|
43 | |
34 | |
25 | |
23 | |
23 |