![]() |
Simple SumIF Question?
Hello, I am having trouble with a SumIf question that I think would be simple
but doesn't seem to work. Basically I am just dividing two columns but when there is a zero, it gives me the div/o error message. Here is my current calculation: =H3/G3 What I would like is that if H3 is zero then to just return a zero but to do the division if H3 is greater than zero. Thank you |
Simple SumIF Question?
Try
=IF(ISERROR(H3/G3),0,H3/G3) "RoadKill" wrote: Hello, I am having trouble with a SumIf question that I think would be simple but doesn't seem to work. Basically I am just dividing two columns but when there is a zero, it gives me the div/o error message. Here is my current calculation: =H3/G3 What I would like is that if H3 is zero then to just return a zero but to do the division if H3 is greater than zero. Thank you |
Simple SumIF Question?
RoadKill
Don't you mean if G3 is zero? If H3 is 0, you should get 0, but you will get a divide by 0 error if G3 is 0. =If(G3=0,0,H3/G3) HTH, Conan "RoadKill" wrote in message ... Hello, I am having trouble with a SumIf question that I think would be simple but doesn't seem to work. Basically I am just dividing two columns but when there is a zero, it gives me the div/o error message. Here is my current calculation: =H3/G3 What I would like is that if H3 is zero then to just return a zero but to do the division if H3 is greater than zero. Thank you |
All times are GMT +1. The time now is 10:19 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com