Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Mya2015
Frequent Visitor

please help

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

1 ACCEPTED SOLUTION
spinfuzer
Solution Sage
Solution Sage

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"

spinfuzer_0-1705997621964.png

 

You could also do 

View solution in original post

3 REPLIES 3
spinfuzer
Solution Sage
Solution Sage

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"

spinfuzer_0-1705997621964.png

 

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



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




BA_Pete
Super User
Super User

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



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors