Forum Discussion
gemcityzach
Helper IV
2 years agoUse Calendar for Time Intelligence on another Table with Multiple Dates
What do you think the optimal way to plot muliple dates from the same table would be in a combo column-line chart? I have work units that have a 'Created' date and a 'Closed' date. I want to impl...
- 2 years ago
gemcityzach Yeah, doesn't work that way other than perhaps overlaying two visuals but that's a mess. Better to create a measure for the closed count of ids like this:
Closed Count Measure = VAR __Date = MAX('Date'[Date]) VAR __Table = FILTER( ALL('Table'), [Closed Date] = __Date ) VAR __Result = COUNTROWS( __Table ) RETURN __Result
Greg_Deckler
Community Champion
2 years agogemcityzach That's typically done in your formatting for the column.
gemcityzach
Helper IV
2 years agoYeah I checked for that but it doesn't offer the ability to 'group' the data into months. There are just variations on MM-DD-YYYY. I used the SQIBI calendar template (DAX Date Template - SQLBI).