Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
yjk3140
Helper I
Helper I

Convert SQL query into DAX query

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!

2 REPLIES 2
yjk3140
Helper I
Helper I

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 🙂

amitchandak
Super User
Super User

@yjk3140 , Check if this can help

Rankx(Allselected('Table'[Timestamp]) , CALCULATE( DISTINCTCOUNT('Table'[job_id]), 'Table'[status] = "PAUSED") ,,desc,dense)

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.