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

Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.

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
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.