Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
if [TB03_Date]="NotFound" and [AFB Date] ="NotFound" and [#"Pre-TB Date"] ="NotFound" then "Nottest"
else [TB03_Date] else [AFB Date] else [#"Pre-TB Date"]
Someone suggesstion me
Solved! Go to Solution.
Replace all these columns "NotFound" with null
Then use formula
[TB03_Date] ?? [AFB Date] ?? [#"Pre-TB Date"]
below works too if you want it to say All Not Found if all are null
[TB03_Date] ?? [AFB Date] ?? [#"Pre-TB Date"] ?? "All Not Found"
You could also do
Replace all these columns "NotFound" with null
Then use formula
[TB03_Date] ?? [AFB Date] ?? [#"Pre-TB Date"]
below works too if you want it to say All Not Found if all are null
[TB03_Date] ?? [AFB Date] ?? [#"Pre-TB Date"] ?? "All Not Found"
You could also do
WOW!
I cannot for the life of me work out how you've managed to translate OP's question into this answer.
OP seems happy with the solution though, so good job!
Pete
Proud to be a Datanaut!
Hi @Mya2015 ,
Happy to help if you can explain what you're trying to achieve.
What, exactly, are you expecting this formula to do for you?
Pete
Proud to be a Datanaut!