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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I am not sure how to make it so that if today is a date this week, to show the time frame for last week, assuming Sunday - Saturday is a week.
For example, here is how I am displaying 60 days from Today's date:
Meetings Hold60 = ([Today]-60)&"-"&([Today])
How would I display the time frame of last week: July 17 - July 23?
When Today becomes Sunday, July 31st, the time frame of last week should change to July 24 - July 30.
Any ideas?
Solved! Go to Solution.
I am not sure how you would like to display rolling time frame with the card visual, but if you just want to show the last weekday as you described, then we could write the formula in the following format (Today() returns the value of 8/1/2016):
Lastweekd = Today()-weekday(Today(), 1)-6 & " - " &today()-weekday(today(), 1)
This would show the result in the following way:
If you would like to format, then try the following formula:
Lastweekf = FORMAT(today()-weekday(Today(), 1)-6,"mmmm dd") & " - " & FORMAT(today()-weekday(today(), 1),"mmmm dd")
Besides, regarding the Card visual, could you please share more details here?
Regards,
Charlie Liao
I am not sure how you would like to display rolling time frame with the card visual, but if you just want to show the last weekday as you described, then we could write the formula in the following format (Today() returns the value of 8/1/2016):
Lastweekd = Today()-weekday(Today(), 1)-6 & " - " &today()-weekday(today(), 1)
This would show the result in the following way:
If you would like to format, then try the following formula:
Lastweekf = FORMAT(today()-weekday(Today(), 1)-6,"mmmm dd") & " - " & FORMAT(today()-weekday(today(), 1),"mmmm dd")
Besides, regarding the Card visual, could you please share more details here?
Regards,
Charlie Liao
Please use below formula for a column.
Last Week = FORMAT(TODAY()-7,"mmm dd") & " - " & FORMAT(TODAY()-1,"mmm dd")
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 51 | |
| 36 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 93 | |
| 77 | |
| 41 | |
| 26 | |
| 26 |