Forum Discussion
Dynamic date title
- 7 years ago
Yes, this is possible.
1. Click the "Enter Data" button to create a new table and enter "Date Refreshed" in the first cell, then click "Load"
2. In this new table add a new column and make its formula
Date Refreshed = "Sunday, " & MONTH(UTCNOW()) & "/" & DAY(UTCNOW())3. Create a card in your report that displays the Max of 'Table1'[Date Refreshed]
Whenever the dataset is refreshed the UTCNOW() function will find the current date and then the MONTH() and DAY() will do the math to find out what month and day the current date is. The result looks like this:
EDIT: Oops, I'm dumb. They DAY() and MONTH() should be switched. It will still work the same
Yes, this is possible.
1. Click the "Enter Data" button to create a new table and enter "Date Refreshed" in the first cell, then click "Load"
2. In this new table add a new column and make its formula
3. Create a card in your report that displays the Max of 'Table1'[Date Refreshed]
Whenever the dataset is refreshed the UTCNOW() function will find the current date and then the MONTH() and DAY() will do the math to find out what month and day the current date is. The result looks like this:
EDIT: Oops, I'm dumb. They DAY() and MONTH() should be switched. It will still work the same