May 01 2024 01:35 AM
I have a series of columns that if the value is NO then I want the calculated column to Say No, and if none present say yes.
I have tried this: =IF(([Column1]="NO"),IF([Column2]="NO")...etc),"No","Yes"))
Am i missing something?
May 01 2024 03:07 AM
Solution@jamescosten you need to use OR as in the example below:
=IF(OR(Fruit="Banana", Fruit="Apple"),"Yes","No")
Rob
Los Gallardos
Microsoft Power Automate Community Super User.
Principal Consultant, SharePoint and Power Platform WSP Global (and classic 1967 Morris Traveller driver)
May 01 2024 03:07 AM
Solution@jamescosten you need to use OR as in the example below:
=IF(OR(Fruit="Banana", Fruit="Apple"),"Yes","No")
Rob
Los Gallardos
Microsoft Power Automate Community Super User.
Principal Consultant, SharePoint and Power Platform WSP Global (and classic 1967 Morris Traveller driver)