What formula will return the text in the field that is not blank?
The Primary Program field should contain the text from either Primary Program-A field (which is a column formula) or Primary Program-B field (which is also a column formula).
I've tried nested IF statements. IF([Primary Program-A]@row, "", [Primary Program-B]@row) works but when switched, IF([Primary Program-B]@row, "", [Primary Program-A]@row) does not work.
Thanks for any help!
Lori
Best Answer
-
Hey Lori!
Try:
=IF([Primary Program-A]@row<> "", [Primary Program-A]@row, [Primary Program-B]@row)
Checks to see if column A is blank, if it's NOT blank, it takes the data in column A.
If it IS blank, it pulls the data from column B
Let me know if that works for you, or if you need any further assistance!
-Jon
Answers
-
Hey Lori!
Try:
=IF([Primary Program-A]@row<> "", [Primary Program-A]@row, [Primary Program-B]@row)
Checks to see if column A is blank, if it's NOT blank, it takes the data in column A.
If it IS blank, it pulls the data from column B
Let me know if that works for you, or if you need any further assistance!
-Jon
-
Jon, thank you so much! That worked perfectly!
Lori
-
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.5K Get Help
- 448 Global Discussions
- 145 Industry Talk
- 481 Announcements
- 5.1K Ideas & Feature Requests
- 85 Brandfolder
- 152 Just for fun
- 73 Community Job Board
- 492 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 304 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!