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

Create Non Numeric (String) measure using IF and ELSE condition

Something like DATA = If(TableA= "ABCD", "LARGE", "SMALL")

I need to create this as a measure because i need to use it in another measure which where i will be using this XYZ and another number condition

1 ACCEPTED SOLUTION

Hi @Anonymous,

 

You can simply add "min" or "max" to the column. Please refer to the snapshot below. BTW, a measure needs the context in the visual.

 

MeasureName =
IF ( MIN ( Table1[ColumnA] ) = "ABCD", "LARGE", "SMALL" )

 

Create-Non-Numeric-String-measure-using-IF-and-ELSE-condition

 

Best Regards,
Dale

Community Support Team _ Dale
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

A table cannot be equal to a text value. In DAX, you cannot say TableA="ABCD". If you want a cell value to be equal to that, you have to mention the column name, and also filter the rows to get to the row that you want. Or alternatively, you have to use functions that search the entire column, such as Contains.

Author, Consultant, Speaker
https://radacad.com
Anonymous
Not applicable

Sorry it should have been  MeasureName = If(Table(ColumnA)= "ABCD", "LARGE", "SMALL")

Hi @Anonymous,

 

You can simply add "min" or "max" to the column. Please refer to the snapshot below. BTW, a measure needs the context in the visual.

 

MeasureName =
IF ( MIN ( Table1[ColumnA] ) = "ABCD", "LARGE", "SMALL" )

 

Create-Non-Numeric-String-measure-using-IF-and-ELSE-condition

 

Best Regards,
Dale

Community Support Team _ Dale
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 was able to create the measure with the "min" function on Friday, Appreciate your response.

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.