Forum Discussion
wi11iamr
10 years agoAdvocate II
Using Min & Max date from dataset in report heading
I'd like to create a header for my report showing the date range of the data that is presented. As I have a datestamp in my dataset for each record, I'm hoping to avoid hard coding the date range...
- 10 years ago
Create two measures:
MaxDate = MAX([Date])
MinDate = MIN([Date])
Add each measure to its own individual card visualization.
Greg_Deckler
10 years agoCommunity Champion
Create two measures:
MaxDate = MAX([Date])
MinDate = MIN([Date])
Add each measure to its own individual card visualization.
wi11iamr
10 years agoAdvocate II
Simple & elegant - thanks Greg_Deckler!!