Forum Discussion
Non Dev Chart
- Anonymous5 years ago
Hi Anonymous ,
Yes, the measure counts the closed tickets. Because there an active relationship between date and create date.
Not very clear about your data model, I used date hierarchy Year and Month as axis.
I'll share my sample data with you. please check the attached file.
Best Regards,
Jay
if you provide some sample date i think it will be much easier to demonstrate (make sure its in text format)
also can you show what result you arae expecting
This is the expected chart:
I'm able to make them seperately but not together.
- vanessafvg5 years agoCommunity Champion
can you provide some sample data (in text form)
- Anonymous5 years agoNot applicable
This is sample input:
I already have a date table and the relationship created like below:
One is active with the Created Date.
Another is inactive with the closed date.
- Anonymous5 years agoNot applicable
Hi Anonymous ,
Use below measure and you don't need the inactive relationship and USERELATIONSHIP() function.
Measure = CALCULATE(DISTINCTCOUNT('Table'[WORKITEM]),FILTER('Table',YEAR('Table'[CLOSEDATE])=SELECTEDVALUE('CALENDAR'[Date].[Year])&&MONTH('Table'[CLOSEDATE])=SELECTEDVALUE('CALENDAR'[Date].[MonthNo])))Best Regards,
Jay