Forum Discussion
sandersonmm
4 years agoFrequent Visitor
multiple dates on axis
Hi, I have 2 dates that I want to plot on the X-axis and a count of case IDs on the Y-axis. I cant seem to be able to add in more than one one dimension onto the X-axis.
jsaunders_zero9
4 years agoResponsive Resident
Good to hear,
TABLES
_Calendar[Date] joins to Created Date and Closed Date
MEASURES
CasesOpened = CALCULATE(COUNTROWS('Cases'),USERELATIONSHIP('Cases'[Created Date],_Calendar[Date]))
CasesClosed = CALCULATE(COUNTROWS('Cases'),USERELATIONSHIP('Cases'[Closed Date],_Calendar[Date]))VISUALS
Anonymous
4 years agoNot applicable
I am facing similar issues. When I tried to make relationship it allows only one relationship to be active. If I make created date as active, the no.of cases created at that month is showing correct, but when I add closed. It is only showing the created values in closed. Same when I make closed date as active relationship. When I try to activate both the relationship it is throwing error.