This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi all
I am trying to get the previous weeks figures based on the week in a calendar table.
Specifically I want to be able to create a table that uses the dates from the calendar table to get appointment figures for the current week and the previous week.
Please see tables below.
Any help greatly appreciated.
Solved! Go to Solution.
Hi @BryanWhellams,
You can create measures below:
CurrentWeekTotal = CALCULATE(SUM(Table1[Appointments]),FILTER(ALL(Table1),'Table1'[WeekNumber]=MAX('Calendar'[Weeknum])))
PreviousWeekTotal = CALCULATE(SUM(Table1[Appointments]),FILTER(ALL(Table1),'Table1'[WeekNumber]=MAX('Calendar'[Weeknum])-1))
For details, you can download attached pbix file.
Best Regards,
Qiuyun Yu
Hi @BryanWhellams,
Is there a possibility to not have data for a certain week(s). So, you may have data for 1701, 1702 and 1704. There is no data for 1703. Is this possible?
Hi @BryanWhellams,
You can create measures below:
CurrentWeekTotal = CALCULATE(SUM(Table1[Appointments]),FILTER(ALL(Table1),'Table1'[WeekNumber]=MAX('Calendar'[Weeknum])))
PreviousWeekTotal = CALCULATE(SUM(Table1[Appointments]),FILTER(ALL(Table1),'Table1'[WeekNumber]=MAX('Calendar'[Weeknum])-1))
For details, you can download attached pbix file.
Best Regards,
Qiuyun Yu
Check out the April 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 |
|---|---|
| 31 | |
| 25 | |
| 21 | |
| 18 | |
| 17 |
| User | Count |
|---|---|
| 62 | |
| 34 | |
| 33 | |
| 24 | |
| 23 |