This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
A very dumb question.
Why PowerBI couldn't return order dates when my condition is true?
Solved! Go to Solution.
The 'IF' statement has two possible outcomes. They must both be of the same data type.
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
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
yes, it's what I was looking for.
What is the expression used to caclulate the SLArule.Calendar/Business column?
The 'IF' statement has two possible outcomes. They must both be of the same data type.
Awesome and interesting.
I learned that using BLANK(), instead of "" fixes the issue.
it's not output from an expression. it's just fixed text.
thanks for your help.
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 40 | |
| 39 | |
| 31 | |
| 22 | |
| 15 |
| User | Count |
|---|---|
| 76 | |
| 61 | |
| 34 | |
| 30 | |
| 25 |