Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Trying to Get a Blank Cell


Hi

I am trying to make a cell back if a formula doesn't add up

I am using the formula below, can anyone tell me where i am going
wrong as this doesn;t work


=IF(ISNA(SUM(C9+E9)/6),"",SUM(C9+E9)/6)

Many Thanks

Lins
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,311
Default Trying to Get a Blank Cell

What are you getting.
Also, you don't need the SUM part of this formula.

=IF(ISNA(C9+E9)/6,"",C9+E9)/6

And unless (C9+E9)/6 is producing #N/A, then you won't get a blank result.

You might try:
=IF(ISERROR(C9+E9)/6,"",C9+E9)/6

Regards,
Paul

--

wrote in message
...

Hi

I am trying to make a cell back if a formula doesn't add up

I am using the formula below, can anyone tell me where i am going
wrong as this doesn;t work


=IF(ISNA(SUM(C9+E9)/6),"",SUM(C9+E9)/6)

Many Thanks

Lins



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,365
Default Trying to Get a Blank Cell

In addition to what l.clarkson wrote, I don't think you're ever going to get
an error unless either C9 or E9 has a value that can't be added together.
Lets assume that both contain zero: (0+0)/6 = 0 not an error.

When would you want to display the blank cell, that is when the results of
the calculation are what?

If you want to display blank when results are zero, then try this:
=IF(C9+E9=0,"",(C9+E9)/6)

If in your original sample formula the /6 was really supposed to be a
reference to another cell on row 6, such as perhaps F6 and there is the
potential that it will be zero, resulting in a #DIV!/0 error, then this would
work:
=IF(ISERROR((C9+E9)/F6),"",(C9+E9)/F6)

Hope this helps some.

" wrote:


Hi

I am trying to make a cell back if a formula doesn't add up

I am using the formula below, can anyone tell me where i am going
wrong as this doesn;t work


=IF(ISNA(SUM(C9+E9)/6),"",SUM(C9+E9)/6)

Many Thanks

Lins

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,365
Default Trying to Get a Blank Cell

oops, should have said "In addition to what PCLIVE said..."

" wrote:


Hi

I am trying to make a cell back if a formula doesn't add up

I am using the formula below, can anyone tell me where i am going
wrong as this doesn;t work


=IF(ISNA(SUM(C9+E9)/6),"",SUM(C9+E9)/6)

Many Thanks

Lins

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 14
Default Trying to Get a Blank Cell

Hi Paul

Thank you for your help, i am getting #Value! and wanted the cell to
remain blank

I am still getting #Value! with your formual, any idea :-)

Lins



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 14
Default Trying to Get a Blank Cell

Works Perfectly Now, thank you for your help

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,311
Default Trying to Get a Blank Cell

Sorry,
I left out a parenthesis.

=IF(ISERROR(C9+E9)/6,"",(C9+E9)/6)

--

"Linexe" wrote in message
...
Hi Paul

Thank you for your help, i am getting #Value! and wanted the cell to
remain blank

I am still getting #Value! with your formual, any idea :-)

Lins



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
Average Formula to display blank cell if named range is blank Rachael F Excel Worksheet Functions 3 February 22nd 08 05:05 PM
If cell blank return a blank Angela1979 Excel Worksheet Functions 8 March 7th 07 01:18 PM
how to get excel to display blank if reference cell blank silent1(not) Excel Worksheet Functions 1 December 2nd 05 02:49 PM
How do I make a blank cell with a date format blank? Pivot Table/Query Excel Worksheet Functions 6 June 14th 05 11:19 PM
COPY A CONCATENATE CELL TO BLANK CELL PUTTING IN THE NEXT BLANK C. QUEST41067 Excel Discussion (Misc queries) 1 January 15th 05 09:29 PM


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