Stumped and Looking for Help
Help! I can't get this formula to work correctly. It works fine when the helper column is "1" but when its "0" it gives me a blank cell in the "Project Timing Status"cell. It should read "Pushed".
What am I doing wrong??
Thanks in advance for any advice you can provide.
Answers
-
You don't tell the formula what to do in the even that it is not 1. You have
=IF(Helper@row = 1, ........................))))))))
You need
=IF(Helper@row = 1, ........................))))))), "Pushed")
Note the number of closed parenthesis there at the end. You are basically adding that last "comma text string" portion right before the very last closing parenthesis.
-
Ahh, yes I see know what I'm doing wrong! Thank you, this helped me get it working. Much appreciated Paul!!
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 142 Industry Talk
- 473 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!