Forum Discussion
Rsanjuan
Advocate III
10 years agoDisplaying rolling time frame using card visual
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 fro...
- 10 years ago
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
Habib
Continued Contributor
10 years agoPlease use below formula for a column.
Last Week = FORMAT(TODAY()-7,"mmm dd") & " - " & FORMAT(TODAY()-1,"mmm dd")