This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
I need to compare days of 3 years then month
1st Monday of the year
1st Tuesday of the year etc
Then
Month of January sales 2022 , 2023 and 2024
Can any expert guide me to find a solution ?
Solved! Go to Solution.
Hi @banda ,
I suggest you to create a calendar table to help your calculation.
Calendar =
ADDCOLUMNS (
CALENDARAUTO (),
"Year", YEAR ( [Date] ),
"Month", MONTH ( [Date] ),
"MonthName", FORMAT ( [Date], "MMMM" ),
"WeekDay", WEEKDAY ( [Date], 2 ),
"DayName", FORMAT ( [Date], "DDDD" ),
"WeekNum",
IF ( YEAR ( [Date] ) = 2024, WEEKNUM ( [Date], 2 ) + 1, WEEKNUM ( [Date], 2 ) )
)
Create two matrix visuals.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @banda ,
I suggest you to create a calendar table to help your calculation.
Calendar =
ADDCOLUMNS (
CALENDARAUTO (),
"Year", YEAR ( [Date] ),
"Month", MONTH ( [Date] ),
"MonthName", FORMAT ( [Date], "MMMM" ),
"WeekDay", WEEKDAY ( [Date], 2 ),
"DayName", FORMAT ( [Date], "DDDD" ),
"WeekNum",
IF ( YEAR ( [Date] ) = 2024, WEEKNUM ( [Date], 2 ) + 1, WEEKNUM ( [Date], 2 ) )
)
Create two matrix visuals.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Please provide sample data (with sensitive information removed) that covers your issue or question completely, in a usable format (not as a screenshot).
https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...
Please show the expected outcome based on the sample data you provided.
https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 32 | |
| 25 | |
| 23 | |
| 22 | |
| 13 |
| User | Count |
|---|---|
| 61 | |
| 47 | |
| 27 | |
| 24 | |
| 19 |