Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
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
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
75 | |
73 | |
69 | |
47 | |
41 |
User | Count |
---|---|
63 | |
41 | |
30 | |
28 | |
28 |