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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
Anonymous
Not applicable

SQL to DAX

Can anyone help in converting the sql query to DAX for creating measures in power BI

select R.*
from APPS S
left Join APPREVIEW R on S.appname = R.appname
where S.appname = 'CANDY'
and R.appvalues > 50000
order by R.appvalues desc

3 REPLIES 3
Anonymous
Not applicable

Hi Roshawna,

 

You can use the same query in Advanced Editor to get this result. Since, PBI doesn't support left outer join to fetch the data based on left outer join.

 

SQL Query Advanced Editor in PBI.PNG

 

Regards,

Pradeep

Anonymous
Not applicable

Hi @Anonymous I don't have the access to get the data using Advanced Editor , though I am working with the already published reports.

Is there any other way.

Anonymous
Not applicable

Hi Roshawna,

 

This is also possible in DAX.

 

By using NATURALLEFTOUTERJOIN([APPS],[APPREVIEW])   you can do the left outer join query in DAX to get all the records from table 1 "APPS" and Matching records with table 2 "APPREVIEW".

 

Then, you can apply more filters on the Transformations or using Filters in Power BI.

 

Regards,

Pradeep

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

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.