Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Basically I want to show 3 values, pass,Fail, and blanks...
=IF( SomeDateColumn > TODAY() ,"Pass" , IF( Blank(), "" ,"Fail") )
I've some blank rows but still comes with FAIL instead of empty string or Blank values.
what I'm doing wrong?
Solved! Go to Solution.
hi,@huslayer
ISBLANK(Column) return true or false and Column = Blank() is value of Column is Blank() .
for example:
ISBLANK(Column)=true() and Column = Blank() is the same result, and ISBLANK(Column)=false() and Column <> Blank() is the same result.
Best Regards,
Lin
hi,@huslayer
You can try to use this formula like below:
Column2 = IF( Table1[Date] > TODAY() ,"Pass" , IF(Table1[Date]= Blank(), "" ,"Fail") )
Result:
Best Regards,
Lin
Hi Lin,
thanks for jumping in.
whats' the difference between ISBLANK(Column) and Column = Blank() or it's the same?
thanks
hi,@huslayer
ISBLANK(Column) return true or false and Column = Blank() is value of Column is Blank() .
for example:
ISBLANK(Column)=true() and Column = Blank() is the same result, and ISBLANK(Column)=false() and Column <> Blank() is the same result.
Best Regards,
Lin
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.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 56 | |
| 47 | |
| 44 | |
| 20 | |
| 20 |
| User | Count |
|---|---|
| 72 | |
| 70 | |
| 34 | |
| 33 | |
| 31 |