Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
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 job closed for each month.
How to do it?
Thanks in advance
Solved! Go to Solution.
It can be like:
Count(Opendate) = Count(Table[numjob])Count(Closedate) = CALCULATE(count(Table[numjob]),USERELATIONSHIP(Table[closedjobdate],CalendarTable[Date]))
First of all you need to have a Calendar table with which your this table will have with.
Refer - Power BI Date or Calendar Table Best Method: DAX or Power Query? - RADACAD
Then have two relationship, one between Date from Calendar and openedjobdate(active)
The other between Date from Calendar and closedjobdate(inactive)
Then create two measures to count the number of jobs.
Please note for closeddate you will have to use USERELATIONSHIP dax
And at last in matrix, take month from Calendar table and the measures like this:
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
It can be like:
Count(Opendate) = Count(Table[numjob])Count(Closedate) = CALCULATE(count(Table[numjob]),USERELATIONSHIP(Table[closedjobdate],CalendarTable[Date]))
Ok, very clear now, thanks a lot.
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
| User | Count |
|---|---|
| 47 | |
| 45 | |
| 33 | |
| 33 | |
| 30 |
| User | Count |
|---|---|
| 136 | |
| 116 | |
| 58 | |
| 58 | |
| 56 |