PC Review


Reply
Thread Tools Rate Thread

How do I display 0 if it is the end result for a formula

 
 
=?Utf-8?B?UnViZW4wNjE0Nzk=?=
Guest
Posts: n/a
 
      6th Sep 2007
I have a problem, I'm trying to run the following formula
(=((D7*E7)+(G7*H7)+(J7*K7)+(M7*N7)+(P7*Q7)+(S7*T7)+(V7*W7))/(D7+G7+J7+M7+P7+S7+V7))
which is to find out the average of a weekly call survey but some cells are
blank due to the fact that there are no value inputed because no calls where
made on specific day and the end result turns up an error (#DIV/O!). How can
I make it so if the cells are blank, the end result will turn to display zero?
 
Reply With Quote
 
 
 
 
Chip Pearson
Guest
Posts: n/a
 
      6th Sep 2007
Try

=IF((D7+G7+J7+M7+P7+S7+V7)=0,0,
((D7*E7)+(G7*H7)+(J7*K7)+(M7*N7)+(P7*Q7)+(S7*T7)+(V7*W7))/(D7+G7+J7+M7+P7+S7+V7))

--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting
www.cpearson.com
(email on the web site)


"Ruben061479" <(E-Mail Removed)> wrote in message
news:FBA302DD-9C0A-4E7B-A5CD-(E-Mail Removed)...
>I have a problem, I'm trying to run the following formula
> (=((D7*E7)+(G7*H7)+(J7*K7)+(M7*N7)+(P7*Q7)+(S7*T7)+(V7*W7))/(D7+G7+J7+M7+P7+S7+V7))
> which is to find out the average of a weekly call survey but some cells
> are
> blank due to the fact that there are no value inputed because no calls
> where
> made on specific day and the end result turns up an error (#DIV/O!). How
> can
> I make it so if the cells are blank, the end result will turn to display
> zero?


 
Reply With Quote
 
=?Utf-8?B?VG9wcGVycw==?=
Guest
Posts: n/a
 
      6th Sep 2007
=IF(D7+G7+J7+M7+P7+S7+V7=0,0,((D7*E7)+(G7*H7)+(J7*K7)+(M7*N7)+(P7*Q7)+(S7*T7)+(V7*W7))/(D7+G7+J7+M7+P7+S7+V7))

"Ruben061479" wrote:

> I have a problem, I'm trying to run the following formula
> (=((D7*E7)+(G7*H7)+(J7*K7)+(M7*N7)+(P7*Q7)+(S7*T7)+(V7*W7))/(D7+G7+J7+M7+P7+S7+V7))
> which is to find out the average of a weekly call survey but some cells are
> blank due to the fact that there are no value inputed because no calls where
> made on specific day and the end result turns up an error (#DIV/O!). How can
> I make it so if the cells are blank, the end result will turn to display zero?

 
Reply With Quote
 
=?Utf-8?B?UnViZW4wNjE0Nzk=?=
Guest
Posts: n/a
 
      6th Sep 2007
Thank You very much this worked perfectly, You don't know how much I
appreciate your help!!!! Thank You!!!!!!!

"Chip Pearson" wrote:

> Try
>
> =IF((D7+G7+J7+M7+P7+S7+V7)=0,0,
> ((D7*E7)+(G7*H7)+(J7*K7)+(M7*N7)+(P7*Q7)+(S7*T7)+(V7*W7))/(D7+G7+J7+M7+P7+S7+V7))
>
> --
> Cordially,
> Chip Pearson
> Microsoft MVP - Excel
> Pearson Software Consulting
> www.cpearson.com
> (email on the web site)
>
>
> "Ruben061479" <(E-Mail Removed)> wrote in message
> news:FBA302DD-9C0A-4E7B-A5CD-(E-Mail Removed)...
> >I have a problem, I'm trying to run the following formula
> > (=((D7*E7)+(G7*H7)+(J7*K7)+(M7*N7)+(P7*Q7)+(S7*T7)+(V7*W7))/(D7+G7+J7+M7+P7+S7+V7))
> > which is to find out the average of a weekly call survey but some cells
> > are
> > blank due to the fact that there are no value inputed because no calls
> > where
> > made on specific day and the end result turns up an error (#DIV/O!). How
> > can
> > I make it so if the cells are blank, the end result will turn to display
> > zero?

>

 
Reply With Quote
 
MartinW
Guest
Posts: n/a
 
      6th Sep 2007
Also there is no need for all those brackets.
=((D7*E7)+(G7*H7)+(J7*K7)+(M7*N7)+(P7*Q7)+(S7*T7)+(V7*W7))
is the same as
=(D7*E7+G7*H7+J7*K7+M7*N7+P7*Q7+S7*T7+V7*W7)

HTH
Martin


"Ruben061479" <(E-Mail Removed)> wrote in message
news:4705B307-EF7C-4CB3-91E6-(E-Mail Removed)...
> Thank You very much this worked perfectly, You don't know how much I
> appreciate your help!!!! Thank You!!!!!!!
>
> "Chip Pearson" wrote:
>
>> Try
>>
>> =IF((D7+G7+J7+M7+P7+S7+V7)=0,0,
>> ((D7*E7)+(G7*H7)+(J7*K7)+(M7*N7)+(P7*Q7)+(S7*T7)+(V7*W7))/(D7+G7+J7+M7+P7+S7+V7))
>>
>> --
>> Cordially,
>> Chip Pearson
>> Microsoft MVP - Excel
>> Pearson Software Consulting
>> www.cpearson.com
>> (email on the web site)
>>
>>
>> "Ruben061479" <(E-Mail Removed)> wrote in message
>> news:FBA302DD-9C0A-4E7B-A5CD-(E-Mail Removed)...
>> >I have a problem, I'm trying to run the following formula
>> > (=((D7*E7)+(G7*H7)+(J7*K7)+(M7*N7)+(P7*Q7)+(S7*T7)+(V7*W7))/(D7+G7+J7+M7+P7+S7+V7))
>> > which is to find out the average of a weekly call survey but some cells
>> > are
>> > blank due to the fact that there are no value inputed because no calls
>> > where
>> > made on specific day and the end result turns up an error (#DIV/O!).
>> > How
>> > can
>> > I make it so if the cells are blank, the end result will turn to
>> > display
>> > zero?

>>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: display result of formula joeu2004 Microsoft Excel Discussion 0 17th Jun 2011 10:04 PM
Re: display result of formula GS Microsoft Excel Discussion 0 17th Jun 2011 10:04 PM
How do I display a formula result without losing the formula? mamajazz Microsoft Excel Misc 2 7th Nov 2008 03:07 PM
Display of formula result KerriBarsh Microsoft Excel Worksheet Functions 2 28th Jan 2008 07:33 PM
Want to display financial formula result... not the formula =?Utf-8?B?QXJteSBHdXk=?= Microsoft Excel Worksheet Functions 2 5th Sep 2007 09:26 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 03:06 AM.