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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
gablewithbird
Frequent Visitor

IF statement for identifying data type.

A very dumb question.

Why PowerBI couldn't return order dates when my condition is true?

 

Capture.PNG

 

Capture1.PNG

 

 

 

 

 

2 ACCEPTED SOLUTIONS
HotChilli
Community Champion
Community Champion

The 'IF' statement has two possible outcomes.  They must both be of the same data type.

View solution in original post

TomMartens
Super User
Super User

Hey,

 

this is due to the fact, IF can not return values of different data types, your statement will return a date (Ordered Date) or a string "".

You can use this instead:

Column = IF('Table1'[CheckCondition] = "Calendar" , 'Table1'[Ordered Date] , BLANK())

Instead of returning an empty string "", return BLANK(), if the IF condition equals to FALSE

 

Hopefully this is what you are looking for.

 

Regards,

Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

View solution in original post

5 REPLIES 5
TomMartens
Super User
Super User

Hey,

 

this is due to the fact, IF can not return values of different data types, your statement will return a date (Ordered Date) or a string "".

You can use this instead:

Column = IF('Table1'[CheckCondition] = "Calendar" , 'Table1'[Ordered Date] , BLANK())

Instead of returning an empty string "", return BLANK(), if the IF condition equals to FALSE

 

Hopefully this is what you are looking for.

 

Regards,

Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

yes, it's what I was looking for.

Cmcmahan
Resident Rockstar
Resident Rockstar

What is the expression used to caclulate the SLArule.Calendar/Business column?

HotChilli
Community Champion
Community Champion

The 'IF' statement has two possible outcomes.  They must both be of the same data type.

@HotChilli 

Awesome and interesting.

I learned that using BLANK(), instead of "" fixes the issue.

@Cmcmahan 

it's not output from an expression. it's just fixed text. 

 

thanks for your help.

 

 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.