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
asdf1608
Helper V
Helper V

How to get text in IF/else condition

I am trying to convert the tableau calculation to PBI DAX. 

The calculated field is: 

if [measure1] >= 1 then
" Batch 1 = " + ifnull(str([Batch 1]), "")
else ""
end

How to I get this tableau calculation in power BI DAX

 

1 ACCEPTED SOLUTION
olgad
Super User
Super User

What shall be the output?

generally if statements are writte if (Measure1<0, "yes", "no")

Try
if
([Measure] >= 1,
" Batch 1 = " &IF(ISBLANK(min('Table'[Batch 1])), "")
,"")

or  
if([Measure] >= 1,
" Batch 1 = " &IF(ISBLANK([Batch 1]), "")
,"")

DID I ANSWER YOUR QUESTION? PLEASE MARK MY POST AS A SOLUTION! APPRECIATE YOUR KUDO/LIKE!
PROUD TO BE A SUPER USER!
Best Stories, Interesting Cases: PowerBI Storytime Newsletter
Linkedin Profile: Linkedin
YouTube Channel: PowerBI Storytime

View solution in original post

2 REPLIES 2
tamerj1
Super User
Super User

Hi @asdf1608 

please try

=
SELECTEDVALUE ( 'Table'[Batch 1] )

olgad
Super User
Super User

What shall be the output?

generally if statements are writte if (Measure1<0, "yes", "no")

Try
if
([Measure] >= 1,
" Batch 1 = " &IF(ISBLANK(min('Table'[Batch 1])), "")
,"")

or  
if([Measure] >= 1,
" Batch 1 = " &IF(ISBLANK([Batch 1]), "")
,"")

DID I ANSWER YOUR QUESTION? PLEASE MARK MY POST AS A SOLUTION! APPRECIATE YOUR KUDO/LIKE!
PROUD TO BE A SUPER USER!
Best Stories, Interesting Cases: PowerBI Storytime Newsletter
Linkedin Profile: Linkedin
YouTube Channel: PowerBI Storytime

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.

Top Solution Authors