Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default Formula text attn:Jacob

Jacob
Thanks again for the help, I am fairly new at the formula bit.
I have another woork sheet with the same issue, it is an amount divided by
the number of days to give an average. =sum(c45/d45) the same issue shows in
the uncalculated cell. unlike my other work sheet the c column is not a
static number.
what in a formula leaves the uncalculated cell empty before any entrys?
6730 10 673
15205 30 507
#DIV/0!
Thanks
--
Max
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default Formula text attn:Jacob

Try the below. Count() counts the number of numbers in the range. Here if it
is 2 only we are doing the division or else blank
=IF(COUNT(c45,d45)=2,c45/d45,"")

If this post helps click Yes
---------------
Jacob Skaria


"mexmex" wrote:

Jacob
Thanks again for the help, I am fairly new at the formula bit.
I have another woork sheet with the same issue, it is an amount divided by
the number of days to give an average. =sum(c45/d45) the same issue shows in
the uncalculated cell. unlike my other work sheet the c column is not a
static number.
what in a formula leaves the uncalculated cell empty before any entrys?
6730 10 673
15205 30 507
#DIV/0!
Thanks
--
Max

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default Formula text attn:Jacob

Jacob
I think I may have mislead you with my insert, I am doing a divison
calculation not a count one. The first column would be say the number of
units divided by the number of days to get an average number in the third
column without having that other formula in that cell before I enter any
values.
Thanks sorry about the confusion.
--
Max


"Jacob Skaria" wrote:

Try the below. Count() counts the number of numbers in the range. Here if it
is 2 only we are doing the division or else blank
=IF(COUNT(c45,d45)=2,c45/d45,"")

If this post helps click Yes
---------------
Jacob Skaria


"mexmex" wrote:

Jacob
Thanks again for the help, I am fairly new at the formula bit.
I have another woork sheet with the same issue, it is an amount divided by
the number of days to give an average. =sum(c45/d45) the same issue shows in
the uncalculated cell. unlike my other work sheet the c column is not a
static number.
what in a formula leaves the uncalculated cell empty before any entrys?
6730 10 673
15205 30 507
#DIV/0!
Thanks
--
Max

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default Formula text attn:Jacob

The formula I posted does the division only...but before doing that it checks
whether both the numbers are available..

If this post helps click Yes
---------------
Jacob Skaria


"mexmex" wrote:

Jacob
I think I may have mislead you with my insert, I am doing a divison
calculation not a count one. The first column would be say the number of
units divided by the number of days to get an average number in the third
column without having that other formula in that cell before I enter any
values.
Thanks sorry about the confusion.
--
Max


"Jacob Skaria" wrote:

Try the below. Count() counts the number of numbers in the range. Here if it
is 2 only we are doing the division or else blank
=IF(COUNT(c45,d45)=2,c45/d45,"")

If this post helps click Yes
---------------
Jacob Skaria


"mexmex" wrote:

Jacob
Thanks again for the help, I am fairly new at the formula bit.
I have another woork sheet with the same issue, it is an amount divided by
the number of days to give an average. =sum(c45/d45) the same issue shows in
the uncalculated cell. unlike my other work sheet the c column is not a
static number.
what in a formula leaves the uncalculated cell empty before any entrys?
6730 10 673
15205 30 507
#DIV/0!
Thanks
--
Max

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default Formula text attn:Jacob

Thanks Jacob the formula worked for the issue. Now all I have to do is
figure out how to get rid of the zeros that show up in the cell with the
formula when their are no entries in the cells they refer too
--
Max


"Jacob Skaria" wrote:

The formula I posted does the division only...but before doing that it checks
whether both the numbers are available..

If this post helps click Yes
---------------
Jacob Skaria


"mexmex" wrote:

Jacob
I think I may have mislead you with my insert, I am doing a divison
calculation not a count one. The first column would be say the number of
units divided by the number of days to get an average number in the third
column without having that other formula in that cell before I enter any
values.
Thanks sorry about the confusion.
--
Max


"Jacob Skaria" wrote:

Try the below. Count() counts the number of numbers in the range. Here if it
is 2 only we are doing the division or else blank
=IF(COUNT(c45,d45)=2,c45/d45,"")

If this post helps click Yes
---------------
Jacob Skaria


"mexmex" wrote:

Jacob
Thanks again for the help, I am fairly new at the formula bit.
I have another woork sheet with the same issue, it is an amount divided by
the number of days to give an average. =sum(c45/d45) the same issue shows in
the uncalculated cell. unlike my other work sheet the c column is not a
static number.
what in a formula leaves the uncalculated cell empty before any entrys?
6730 10 673
15205 30 507
#DIV/0!
Thanks
--
Max



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default Formula text attn:Jacob

Try
=IF(ISERROR(C45/D45),"",C45/D45)

If this post helps click Yes
---------------
Jacob Skaria


"mexmex" wrote:

Thanks Jacob the formula worked for the issue. Now all I have to do is
figure out how to get rid of the zeros that show up in the cell with the
formula when their are no entries in the cells they refer too
--
Max


"Jacob Skaria" wrote:

The formula I posted does the division only...but before doing that it checks
whether both the numbers are available..

If this post helps click Yes
---------------
Jacob Skaria


"mexmex" wrote:

Jacob
I think I may have mislead you with my insert, I am doing a divison
calculation not a count one. The first column would be say the number of
units divided by the number of days to get an average number in the third
column without having that other formula in that cell before I enter any
values.
Thanks sorry about the confusion.
--
Max


"Jacob Skaria" wrote:

Try the below. Count() counts the number of numbers in the range. Here if it
is 2 only we are doing the division or else blank
=IF(COUNT(c45,d45)=2,c45/d45,"")

If this post helps click Yes
---------------
Jacob Skaria


"mexmex" wrote:

Jacob
Thanks again for the help, I am fairly new at the formula bit.
I have another woork sheet with the same issue, it is an amount divided by
the number of days to give an average. =sum(c45/d45) the same issue shows in
the uncalculated cell. unlike my other work sheet the c column is not a
static number.
what in a formula leaves the uncalculated cell empty before any entrys?
6730 10 673
15205 30 507
#DIV/0!
Thanks
--
Max

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
Previously helped by Jacob Skaria -- need more help RGreen Excel Discussion (Misc queries) 1 September 1st 09 07:31 AM
Ping Jacob Skaria Fergal[_2_] Excel Worksheet Functions 2 May 26th 09 12:22 PM
Jacob & Co. Other Prices [email protected] Charts and Charting in Excel 0 September 8th 08 07:58 AM
Attn: Bob Phillips (or any expert!)... help with formula Toppers Excel Worksheet Functions 7 July 26th 07 07:16 PM
Not all of the text is visible.... (Attn: Dave Peterson) RUSH2CROCHET Excel Discussion (Misc queries) 1 June 30th 06 05:15 PM


All times are GMT +1. The time now is 10:27 AM.

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

About Us

"It's about Microsoft Excel"