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
- Customer Resources
- 67.8K Get Help
- 474 Global Discussions
- 205 Use Cases
- 516 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 82 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!