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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. 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
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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