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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

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)

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Feb2025 Sticker Challenge

Join our Community Sticker Challenge 2025

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

Jan NL Carousel

Fabric Community Update - January 2025

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