Forum Discussion
sabinocivita
4 years agoFrequent Visitor
Complex query
Hi all, I have a table with 3 columns: numjob, openedjobdate, closedjobdate. I want to have a visual matrix that has months as rows and as values distinct count of job opened and distinct count of j...
- 4 years ago
It can be like:
Count(Opendate) = Count(Table[numjob])Count(Closedate) = CALCULATE(count(Table[numjob]),USERELATIONSHIP(Table[closedjobdate],CalendarTable[Date]))
sabinocivita
4 years agoFrequent Visitor
Hi PC2790,
thanks for answer.
When you say "Then create two measures to count the number of jobs." on which columns are they based on? Cause I have only one column for numjob
PC2790
Community Champion
4 years agoIt can be like:
Count(Opendate) = Count(Table[numjob])Count(Closedate) = CALCULATE(count(Table[numjob]),USERELATIONSHIP(Table[closedjobdate],CalendarTable[Date]))
- sabinocivita4 years agoFrequent Visitor
Ok, very clear now, thanks a lot.