Forum Discussion
Anonymous
6 years agoNot applicable
Custom Conditional Column using IF / AND / ELSE returning "FALSE"
I am trying to create a custom column that says = if [Vendors Name] = "Jingo Inc" and [Buyer] = "Jango Adams" then [Vendors Name] = "Jongo Plc" else [Vendors Name] I am returning a "FALSE" re...
- Anonymous6 years ago
Anonymous,
Try this in your custom column:
= if [Vendors Name] = "Jingo Inc" and [Buyer] = "Jango Adams" then "Jongo Plc" else [Vendors Name]
Anonymous
6 years agoNot applicable
Anonymous,
Try this in your custom column:
= if [Vendors Name] = "Jingo Inc" and [Buyer] = "Jango Adams" then "Jongo Plc" else [Vendors Name]- Anonymous6 years agoNot applicable
Worked like a charm. Thank you!!