#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
- Customer Resources
- 65.5K Get Help
- 448 Global Discussions
- 144 Industry Talk
- 481 Announcements
- 5.1K Ideas & Feature Requests
- 85 Brandfolder
- 152 Just for fun
- 72 Community Job Board
- 492 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 304 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!