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! Get ahead of the game and start preparing now! Learn more
Hi,
I've posted a question in StackOver flow regareding how to convert SQL qery into DAX
Convert SQL query into DAX query for PowerBI visual - Stack Overflow
The answer I've recieved somewhat solved my query but doesn't meet my requirement 100%.
I need to dense rank the job id by timestamp in descending order and find the # of paused jobs.
Please see my comment under the response..
Would really appreciate any help!
Hi @amitchandak
I applied this query but didn't get the correct result...
I wanna convert the sql query below into DAX, how can I correct the dax query you wrote?
SELECT count(job_id) FROM (SELECT distinct job_id,status,DENSE_RANK over() partition by job_id order by timestamp desc AS rn FROM table1) t2 WHERE t2.rn = 1 and where t2.status = "PAUSED"
thanks for ur help 🙂
@yjk3140 , Check if this can help
Rankx(Allselected('Table'[Timestamp]) , CALCULATE( DISTINCTCOUNT('Table'[job_id]), 'Table'[status] = "PAUSED") ,,desc,dense)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 60 | |
| 43 | |
| 40 | |
| 36 | |
| 21 |
| User | Count |
|---|---|
| 178 | |
| 127 | |
| 115 | |
| 77 | |
| 54 |