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
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
Super User
Super User

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
Super User
Super User

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
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.