Forum Discussion

yjk3140's avatar
yjk3140
Icon for Helper I rankHelper I
4 years ago
Solved

Converting SQL into DAX...

Hi, I have written the sql query below 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 a...