Forum Discussion

Rsanjuan's avatar
Rsanjuan
Advocate III
10 years ago
Solved

Displaying 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...
  • v-caliao-msft's avatar
    10 years ago

    Rsanjuan

    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