Formula Putting a Zero in front of contact name
I am using a basic if statement to try to populate contact emails into a column.
=IF([Business Unit]@row = "Field", "email1") + IF([Business Unit]@row = "Home Office", "email2") + IF([Business Unit]@row = "Distribution", "email")
Whenever the option is Distribution though, it puts a 0 in front of the result
Does anyone know what would be causing this?
Best Answer
-
Try adding to the false option an empty string:
=IF([Business Unit]@row = "Field", "email1","") + IF([Business Unit]@row = "Home Office", "email2","") + IF([Business Unit]@row = "Distribution", "email","")
Answers
-
Try adding to the false option an empty string:
=IF([Business Unit]@row = "Field", "email1","") + IF([Business Unit]@row = "Home Office", "email2","") + IF([Business Unit]@row = "Distribution", "email","")
-
Such a silly error! Thank you, that worked!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63K Get Help
- 380 Global Discussions
- 212 Industry Talk
- 442 Announcements
- 4.6K Ideas & Feature Requests
- 140 Brandfolder
- 129 Just for fun
- 130 Community Job Board
- 449 Show & Tell
- 30 Member Spotlight
- 1 SmartStories
- 305 Events
- 34 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!