The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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!