Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5
Default How do I display 0 if it is the end result for a formula

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?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7,247
Default How do I display 0 if it is the end result for a formula

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" wrote in message
...
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?


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4,339
Default How do I display 0 if it is the end result for a formula

=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?

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5
Default How do I display 0 if it is the end result for a formula

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" wrote in message
...
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?


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 860
Default How do I display 0 if it is the end result for a formula

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" wrote in message
...
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" wrote in message
...
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
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
I can't get the formula result to display on my spreadsheet. Kai New Users to Excel 15 January 31st 07 11:13 PM
Display result in same cell as formula J Strang Excel Discussion (Misc queries) 2 August 21st 06 07:38 PM
Display result of formula in header? Hubitron2000 Excel Discussion (Misc queries) 2 March 24th 06 07:25 PM
Formula is entered but will not display result webee33 Excel Worksheet Functions 2 October 18th 05 12:16 AM
How do I display the RESULT of a formula Poor microsoft user New Users to Excel 3 April 27th 05 03:18 PM


All times are GMT +1. The time now is 12:01 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"