Forum Discussion
hassens
9 years agoRegular Visitor
Highlight Last Visit Within Table Based on Multiple Criteria
Hi, I'm hoping someone may have tackled a problem similar to mine. I have a table similar in structure to the one below and I want to add a column that dynamically populates with a '1' IF it is t...
- 9 years ago
Perhaps a measure like:
Measure = IF([Date]=CALCULATE(MAX([Date]),ALLEXCEPT([Period],[Store])),1,0)
Greg_Deckler
Community Champion
9 years agoPerhaps a measure like:
Measure = IF([Date]=CALCULATE(MAX([Date]),ALLEXCEPT([Period],[Store])),1,0)
hassens
9 years agoRegular Visitor
Thanks for this - it worked perfectly!