#DivideBYZero
Good morning, I have this formula that is displaying this error as noting is filled out yet in the columns
How to I not get this error and just have a 0 or leave it blank so it does not look bad? Thank you
=SUM(BAE@row / (([HRS/Day]@row) * [Crew Size]@row))
Best Answer
-
I don't know why you are summing it.. as the math is occurring on a row by row basis.. but anyway..
I think this gives you what you want.. checking for no value before doing the calculation..
=IF(OR([HRS/Day]@row = 0, [Crew Size]@row = 0), "", BAE@row / ([HRS/Day]@row * [Crew Size]@row))
It will leave a blank in the Duration Calculation until filled in.. You can change this to Zero by simply
=IF(OR([HRS/Day]@row = 0, [Crew Size]@row = 0), 0, BAE@row / ([HRS/Day]@row * [Crew Size]@row))
Answers
-
I don't know why you are summing it.. as the math is occurring on a row by row basis.. but anyway..
I think this gives you what you want.. checking for no value before doing the calculation..
=IF(OR([HRS/Day]@row = 0, [Crew Size]@row = 0), "", BAE@row / ([HRS/Day]@row * [Crew Size]@row))
It will leave a blank in the Duration Calculation until filled in.. You can change this to Zero by simply
=IF(OR([HRS/Day]@row = 0, [Crew Size]@row = 0), 0, BAE@row / ([HRS/Day]@row * [Crew Size]@row))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.3K Get Help
- 364 Global Discussions
- 199 Industry Talk
- 428 Announcements
- 4.4K Ideas & Feature Requests
- 136 Brandfolder
- 127 Just for fun
- 128 Community Job Board
- 444 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 283 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!