Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hello There,
I have product images of ads at a YYYY-MM-DD level, and I am trying to use the date column filter to select a week such as "6/11/2023" but then have the option of filtering between "Current Year" and "Year Ago".
Product Image | Date |
http://productimage1.com | 6/11/2023 |
http://productimage2.com | 6/11/2023 |
http://productimage3.com | 6/12/2022 |
http://productimage4.com | 6/12/2022 |
http://productimage5.com | 6/12/2022 |
The purpose of this is to have 2 image grids. The top will show the "Product Image" from the Ads for the current year filtered to date "6/11/2023" and the bottom image grid will show the "Product Images" from the same week year ago.
Here is the same link to a sample of my excel data. I am stumped! Any help is appreciated!
Power BI Using Current Year and Year Ago.xlsx
Solved! Go to Solution.
Hi @UKFan12 ,
Here's my solution.
You can create a calendar table for filtering date and create two measures for filtering images.
Calendar Table:
Calendar = ADDCOLUMNS(CALENDAR(DATE(2023,6,1),DATE(2023,6,30)),"WeekNum",WEEKNUM([Date],2),"Year",YEAR([Date]))
Note that there's no relationship between tables.
Two measures:
Current Year Filter = IF(MAX('Table'[Date])=SELECTEDVALUE('Calendar'[Date]),1)
Year Ago Filter =
var _day1=MAX('Table'[Date])
var _weeknum1=WEEKNUM(_day1,2)
var _year1=YEAR(_day1)
var _day2=MAX('Calendar'[Date])
var _weeknum2=WEEKNUM(_day2,2)
var _year2=YEAR(_day2)
return IF(_weeknum1=_weeknum2&&_year1=_year2-1,1)
Put Current Year Filter measure into visual-level filter of the visual called Current Year and put Year Ago Filter measure into visual-level filter of the visual called Year Ago. Both set up show items when the value is 1.
Create a slicer with dates from the calendar. When you filter date such as "6/11/2023", below is the result.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @UKFan12 ,
Here's my solution.
You can create a calendar table for filtering date and create two measures for filtering images.
Calendar Table:
Calendar = ADDCOLUMNS(CALENDAR(DATE(2023,6,1),DATE(2023,6,30)),"WeekNum",WEEKNUM([Date],2),"Year",YEAR([Date]))
Note that there's no relationship between tables.
Two measures:
Current Year Filter = IF(MAX('Table'[Date])=SELECTEDVALUE('Calendar'[Date]),1)
Year Ago Filter =
var _day1=MAX('Table'[Date])
var _weeknum1=WEEKNUM(_day1,2)
var _year1=YEAR(_day1)
var _day2=MAX('Calendar'[Date])
var _weeknum2=WEEKNUM(_day2,2)
var _year2=YEAR(_day2)
return IF(_weeknum1=_weeknum2&&_year1=_year2-1,1)
Put Current Year Filter measure into visual-level filter of the visual called Current Year and put Year Ago Filter measure into visual-level filter of the visual called Year Ago. Both set up show items when the value is 1.
Create a slicer with dates from the calendar. When you filter date such as "6/11/2023", below is the result.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @UKFan12
Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).
https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-...
Please show the expected outcome based on the sample data you provided.
https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
143 | |
85 | |
66 | |
51 | |
45 |
User | Count |
---|---|
217 | |
89 | |
82 | |
66 | |
57 |