Hello... I have a question on a calculated field we have that pulls data from two different fields into one with the following If statement:
IF(ISBLANK(CSBrand),BrandDepartmentNonAutomation,CSBrand)
We've added a third variable, which is if both CSBrand and BrandDepartmentNonAutomation fields are blank, then this field needs to be "PER"
How do I modify this If statement to reflect the added variable?
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
HI Naushin,
Try this:
IF(ISBLANK(CSBrand),IF(ISBLANK(BrandDepartmentNonAutomation),PER,BrandDepartmentNonAutomation),CSBrand)
Hope that helps!
HI Naushin,
Try this:
IF(ISBLANK(CSBrand),IF(ISBLANK(BrandDepartmentNonAutomation),PER,BrandDepartmentNonAutomation),CSBrand)
Hope that helps!
Thank you Sarah!
Views
Replies
Total Likes
Views
Likes
Replies