Forum Discussion
wi11iamr
Advocate II
10 years agoUsing 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
Community Champion
10 years agoCreate two measures:
MaxDate = MAX([Date])
MinDate = MIN([Date])
Add each measure to its own individual card visualization.
wi11iamr
Advocate II
10 years agoSimple & elegant - thanks Greg_Deckler!!