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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

SQL to DAX Conversion

Hello All , 

I have two table A and B and I need to create DAX  for below  SQL query on it - 

 

select * from

(

select a.user,a.city from A1 a

left outer join B1 b on a.user = b.user and a.city= b.city

where isnull(b.user,'') = ''

) a

where a.user not in (select user from  B1)

order by a.city

 

Thank you for the reply 

1 ACCEPTED SOLUTION
v-yuta-msft
Community Support
Community Support

@Anonymous ,

 

About how to convert sql to dax, I would suggest you to refer to the tutorial below:

https://www.sqlbi.com/articles/from-sql-to-dax-projection/

 

Community Support Team _ Jimmy Tao

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
Mariusz
Community Champion
Community Champion

HI @Anonymous 


Can you provide a data sample?

Many Thanks

Mariusz

v-yuta-msft
Community Support
Community Support

@Anonymous ,

 

About how to convert sql to dax, I would suggest you to refer to the tutorial below:

https://www.sqlbi.com/articles/from-sql-to-dax-projection/

 

Community Support Team _ Jimmy Tao

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Thanks for the reply. I have tried it but some of the KEywords are not working on Power Bi editor.

@Anonymous ,

 

Please remove the key word "EVALUATE".

 

Community Support Team _ Jimmy Tao

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors