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 All
@v-yalanwu-msft @amitchandak have help me on below post :-
https://community.powerbi.com/t5/Desktop/How-to-add-period-YTD-table/m-p/1828677#M709125
Now when user click on 2016 , it still display May 2021
Solved! Go to Solution.
@admin11
You are filtering the Year in the date. try change it to [Date].[Year]
Paul Zheng _ Community Support Team
If this post helps, please Accept it as the solution to help the other members find it more quickly.
@admin11
You are filtering the Year in the date. try change it to [Date].[Year]
Paul Zheng _ Community Support Team
If this post helps, please Accept it as the solution to help the other members find it more quickly.
@Anonymous
Kindly share the PBI file , so that i can understand , how to change the Year field for select to Date.Year
Paul
@admin11 , Try like
YTD DATE =
var _max = MAX('Date'[Date])
var _min = MIN('Date'[Date])
var _a=format(_min, "MMM-YYYY") & " to " & format(_max, "MMM-YYYY") & " SALES BY BRAND_C"
return IF(ISFILTERED('Date'[Date]) || ISFILTERED('Date'[Year]) ,_a,format(TODAY(), "MMM-YYYY"))
You need more ISFILTERED based on the slicer you want to skip today