Forum Discussion
Anonymous
3 years agoNot applicable
Grouping column values
This is the visual I am currently working on, tracking aging tickets. The X-axis is derived from a Measure I created called "DaysSinceOpen" which is just a measure of DateDiff of the created da...
- 3 years ago
You could try wrapping the datediff in if statements: e.g for 1-7 days
Dayssinceopen = if(DATEDIFF(MAX('Table'[created date]),today(),DAY)<8,"1-7","more")then just add more conditions,hope this helps
DOLEARY85
Resident Rockstar
3 years agoYou could try wrapping the datediff in if statements: e.g for 1-7 days
Dayssinceopen = if(DATEDIFF(MAX('Table'[created date]),today(),DAY)<8,"1-7","more")
then just add more conditions,
hope this helps