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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Numbers to Text with IF Statement

I am currently using a calculation to determine % of Inventory Remaining.

 

I would like to use an "IF" Statement to convert this calculation to "Plain Text" -

i.e. 100% = "SOLD OUT"

 

The challenge I am having is that If statements don't allow you to convert numbers to text:

 

DAX comparison operations do not support comparing values of type Number with values of type Text. Consider using the VALUE or FORMAT function to convert one of the values.

 

Any thoughts how I can convert the calc and translate as text?

1 ACCEPTED SOLUTION
kevcurtis
Advocate I
Advocate I

Have you tried using SWITCH in a new column or a measure?

 

[Measure] = your calculation

 

%toText = SWITCH([Measure], 1, "Sold Out", "")

 

%toTextNested = 
SWITCH([Measure],1,"In stock",
(SWITCH([Measure],0,"Sold out",
(SWITCH([Measure],.5,"Low","")))))

View solution in original post

4 REPLIES 4
kevcurtis
Advocate I
Advocate I

Have you tried using SWITCH in a new column or a measure?

 

[Measure] = your calculation

 

%toText = SWITCH([Measure], 1, "Sold Out", "")

 

%toTextNested = 
SWITCH([Measure],1,"In stock",
(SWITCH([Measure],0,"Sold out",
(SWITCH([Measure],.5,"Low","")))))
McCow
Resolver III
Resolver III

Hi @Anonymous

a possible proposal:
1) convert Num (Percent) column to Text
2) use SEARCH (or FOUND) function in if- statement

 

comparing text-to-text should be ok

 

Best regs

Anonymous
Not applicable

@McCow

 

I cannot convert the percent to text, it is a calc - so that options is disabled.

 

Any other thoughts?

@Anonymous

can you create a second column as "text description" of the first, numeric column? 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors