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.4K Get Help
- 447 Global Discussions
- 144 Industry Talk
- 478 Announcements
- 5.1K Ideas & Feature Requests
- 85 Brandfolder
- 151 Just for fun
- 72 Community Job Board
- 490 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 302 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!