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!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hi, stuck with the following;
I have two YTD charts on the same page displaying the same measure that spits out a count value on a weekly axis. The first chart shows the selected year via a slicer but the other needs to show for the year previous to whatever is selected.
I've tried doing this by making two seperate measures and minuplating the dates based on the slicer selection but this won't work for various reasons. My other solution which isn't working is to try and add something to the filter, like a switch of 1 or0...1 being the year I want and 0 being the years to not show but I can't figure this out and get it working.
I thought I could create a calculated column in my date table that would give a 1 or 0 based on the selected slicer? I.e.
PY =
Var _Selected = SelectedValue(Slicer) //2023 for example
Var _PY = _Selected - 1
RETURN
If('date'[year] = _PY,1,0)
This just returns 1 for every row 😞
Any ideas?
Thanks,
Ben
Solved! Go to Solution.
If your primary measure is [Count], you could use the SAMEPERIODLASTYEAR function to return last year's data:
Count Last Year =
CALCULATE ( [Count], SAMEPERIODLASTYEAR ( DimDate[Date] ) )
Proud to be a Super User!
If your primary measure is [Count], you could use the SAMEPERIODLASTYEAR function to return last year's data:
Count Last Year =
CALCULATE ( [Count], SAMEPERIODLASTYEAR ( DimDate[Date] ) )
Proud to be a Super User!
Ah amazing, didn't know of that function.
Thanks
| User | Count |
|---|---|
| 50 | |
| 43 | |
| 36 | |
| 33 | |
| 29 |
| User | Count |
|---|---|
| 139 | |
| 129 | |
| 61 | |
| 59 | |
| 57 |