Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. 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
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
81 | |
75 | |
60 | |
37 | |
33 |
User | Count |
---|---|
102 | |
56 | |
52 | |
46 | |
40 |