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
Anonymous
Not applicable

SQL to DAX

Hello everyone.

 

I need to extract the single value of a cell from a table and showcase it. My initial thoughts are to write a DAX query and assign it to a measure. 

 

However, I'm not sure of how to write the DAX query. The query in SQL will look like this - 

 

SELECT <COL1> FROM <TABLENAME> WHERE <COL2> = 'x' AND <COL3> = 'y' ;

 

Can someone help me convert this to DAX? 

 

Thanks in advance! 

2 ACCEPTED SOLUTIONS
Vvelarde
Community Champion
Community Champion

Helllo @Anonymous

 

try with:

 

Measure= Calculate(Values(Table[Col1]),Filter(Table,Table[Col2]="x" && Table[Col3]="y"))




Lima - Peru

View solution in original post

Hi @Anonymous,

 

Have you tried the measure provided by Vvelarde? It should work.

 

In addition, just in case there may be multiple values returned with the condition of the filter, we can add FIRSTNONBLANK Function (DAX) within the measure in this scenario.Smiley Happy

Measure =
CALCULATE (
    FIRSTNONBLANK ( VALUES ( 'TableName'[Col1] ), 1 ),
    FILTER ( 'TableName', 'TableName'[Col2] = "x" && 'TableName'[Col3] = "y" )
)

Regards

View solution in original post

4 REPLIES 4
alanhodgson
Solution Supplier
Solution Supplier

Hello @Anonymous,

 

You can use the FILTER function to achieve this. See below:

 

EVALUATE
FILTER( VALUES('TableName'[Col1], AND('TableName'[Col2] = "x", 'TableName'[Col3] = "y" ))

 Hope this helps,

 

Alan

Anonymous
Not applicable

Alan, can I assign this to a measure? 

Hi @Anonymous,

 

Have you tried the measure provided by Vvelarde? It should work.

 

In addition, just in case there may be multiple values returned with the condition of the filter, we can add FIRSTNONBLANK Function (DAX) within the measure in this scenario.Smiley Happy

Measure =
CALCULATE (
    FIRSTNONBLANK ( VALUES ( 'TableName'[Col1] ), 1 ),
    FILTER ( 'TableName', 'TableName'[Col2] = "x" && 'TableName'[Col3] = "y" )
)

Regards

Vvelarde
Community Champion
Community Champion

Helllo @Anonymous

 

try with:

 

Measure= Calculate(Values(Table[Col1]),Filter(Table,Table[Col2]="x" && Table[Col3]="y"))




Lima - Peru

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.