#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Dopase via OfficeKB.com
 
Posts: n/a
Default remove #DIV/0!

I tried some of the options given at other formula's but I couldn't get it to
work. I have this formula:

=SUM(Q76:Q77)/SUM(Q76:Q78) and i get the #DIV/0! can some one help me ?

--
Don Seegers

Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.a...tions/200606/1
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bob Phillips
 
Posts: n/a
Default remove #DIV/0!

=IF(SUM(Q76:Q78)=0,"",SUM(Q76:Q78))

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"Dopase via OfficeKB.com" <u17562@uwe wrote in message
news:61cdd07e0f755@uwe...
I tried some of the options given at other formula's but I couldn't get it

to
work. I have this formula:

=SUM(Q76:Q77)/SUM(Q76:Q78) and i get the #DIV/0! can some one help me ?

--
Don Seegers

Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.a...tions/200606/1



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Pete_UK
 
Posts: n/a
Default remove #DIV/0!

You get this error when you are trying to divide by zero, so you need
to test for this and avoid it - here's how:

=IF(SUM(Q76:Q78)=0,0,SUM(Q76:Q77)/SUM(Q76:Q78))

i.e. if the divisor is zero then return zero (or some other
value/message) otherwise evaluate the formula (which might still equate
to zero if SUM(Q76:Q77) evaluates to zero).

Hope this helps.

Pete

Dopase via OfficeKB.com wrote:
I tried some of the options given at other formula's but I couldn't get it to
work. I have this formula:

=SUM(Q76:Q77)/SUM(Q76:Q78) and i get the #DIV/0! can some one help me ?

--
Don Seegers

Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.a...tions/200606/1


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bruno Campanini
 
Posts: n/a
Default remove #DIV/0!

"Dopase via OfficeKB.com" <u17562@uwe wrote in message
news:61cdd07e0f755@uwe...
I tried some of the options given at other formula's but I couldn't get it
to
work. I have this formula:

=SUM(Q76:Q77)/SUM(Q76:Q78) and i get the #DIV/0! can some one help me ?

--
Don Seegers

Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.a...tions/200606/1


=IF(SUM(Q76:Q78),SUM(Q76:Q77)/SUM(Q76:Q78),"")

If SUM(Q76:Q78) = 0, you get Nothing. You can't get 0!

Bruno


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bob Jeffery
 
Posts: n/a
Default remove #DIV/0!

Try...

=If(IsError(SUM(Q76:Q77)/SUM(Q76:Q78)),0,SUM(Q76:Q77)/SUM(Q76:Q78) )

"Dopase via OfficeKB.com" wrote:

I tried some of the options given at other formula's but I couldn't get it to
work. I have this formula:

=SUM(Q76:Q77)/SUM(Q76:Q78) and i get the #DIV/0! can some one help me ?

--
Don Seegers

Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.a...tions/200606/1

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How can i remove the several hyperlink option after entering the . [email protected] Excel Discussion (Misc queries) 1 June 7th 06 03:27 PM
How can i remove the several hyperlink option after entering the . [email protected] Excel Discussion (Misc queries) 2 June 7th 06 03:23 PM
remove characters from a text under a condition [email protected] Excel Discussion (Misc queries) 5 June 5th 06 05:28 PM
how to remove #DIV/0! kuansheng Excel Worksheet Functions 7 May 9th 06 03:54 AM
# DIV/0! error in Excel Helpwanted Excel Discussion (Misc queries) 8 May 6th 05 09:31 PM


All times are GMT +1. The time now is 09:47 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"