Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
skateblade
 
Posts: n/a
Default Need the cell to show blank

I have a formula =MAX(0,37.5-M9) and I need the cell to show blank if the
answer is 0. What can I change?

  #2   Report Post  
JE McGimpsey
 
Posts: n/a
Default

One way:

=IF(M9=37.5, "", 37.5-M9)

In article ,
"skateblade" wrote:

I have a formula =MAX(0,37.5-M9) and I need the cell to show blank if the
answer is 0. What can I change?

  #3   Report Post  
skateblade
 
Posts: n/a
Default

Thanks for the response.
I tried it and it returned 37.5 in the cell. I don't know if it makes a
difference, the cell is formated as a number with 1 decimal.
I ned it to show a blank cell.

"JE McGimpsey" wrote:

One way:

=IF(M9=37.5, "", 37.5-M9)

In article ,
"skateblade" wrote:

I have a formula =MAX(0,37.5-M9) and I need the cell to show blank if the
answer is 0. What can I change?


  #4   Report Post  
JE McGimpsey
 
Posts: n/a
Default

What do you mean by "the answer", then?

The only way "the answer" to "=MAX(0, 37.5-M9)" could be zero is if M9
is greater than or equal to 37.5.

That's what my formula's conditional tests for.

In article ,
"skateblade" wrote:

Thanks for the response.
I tried it and it returned 37.5 in the cell. I don't know if it makes a
difference, the cell is formated as a number with 1 decimal.
I ned it to show a blank cell.

"JE McGimpsey" wrote:

One way:

=IF(M9=37.5, "", 37.5-M9)

In article ,
"skateblade" wrote:

I have a formula =MAX(0,37.5-M9) and I need the cell to show blank if the
answer is 0. What can I change?


  #5   Report Post  
Richard Buttrey
 
Posts: n/a
Default

The format won't make a difference.

Try,

=IF(M9=37.5,"",MAX(0,37.5-M9))

Rgds



On Sat, 15 Oct 2005 08:01:03 -0700, "skateblade"
wrote:

Thanks for the response.
I tried it and it returned 37.5 in the cell. I don't know if it makes a
difference, the cell is formated as a number with 1 decimal.
I ned it to show a blank cell.

"JE McGimpsey" wrote:

One way:

=IF(M9=37.5, "", 37.5-M9)

In article ,
"skateblade" wrote:

I have a formula =MAX(0,37.5-M9) and I need the cell to show blank if the
answer is 0. What can I change?



__
Richard Buttrey
Grappenhall, Cheshire, UK
__________________________


  #6   Report Post  
skateblade
 
Posts: n/a
Default

Thanks,
The formulas works but when the answer is 0 i would like to cell to be blank
so I can't see the 0.


"JE McGimpsey" wrote:

What do you mean by "the answer", then?

The only way "the answer" to "=MAX(0, 37.5-M9)" could be zero is if M9
is greater than or equal to 37.5.

That's what my formula's conditional tests for.

In article ,
"skateblade" wrote:

Thanks for the response.
I tried it and it returned 37.5 in the cell. I don't know if it makes a
difference, the cell is formated as a number with 1 decimal.
I ned it to show a blank cell.

"JE McGimpsey" wrote:

One way:

=IF(M9=37.5, "", 37.5-M9)

In article ,
"skateblade" wrote:

I have a formula =MAX(0,37.5-M9) and I need the cell to show blank if the
answer is 0. What can I change?


  #7   Report Post  
Lilliabeth
 
Posts: n/a
Default


You said you wanted to show blank if the answer is zero.

Your answer apparently is not zero.

Your M9 is either zero or blank, which makes your correct answer be
37.5, not zero.


--
Lilliabeth
------------------------------------------------------------------------
Lilliabeth's Profile: http://www.excelforum.com/member.php...o&userid=27741
View this thread: http://www.excelforum.com/showthread...hreadid=476499

  #8   Report Post  
Lilliabeth
 
Posts: n/a
Default


That is what you have. Is there some other issue?


--
Lilliabeth
------------------------------------------------------------------------
Lilliabeth's Profile: http://www.excelforum.com/member.php...o&userid=27741
View this thread: http://www.excelforum.com/showthread...hreadid=476499

  #9   Report Post  
JE McGimpsey
 
Posts: n/a
Default

Well, you repeated yourself, but you didn't answer my question(s).

The formula I gave you produces a blank cell (null string) when the
answer to MAX(0, 37.5-M9) is zero. Every time.

If you'd like something else, you need to explain, not repeat.


In article ,
"skateblade" wrote:

Thanks,
The formulas works but when the answer is 0 i would like to cell to be blank
so I can't see the 0.


"JE McGimpsey" wrote:

What do you mean by "the answer", then?

The only way "the answer" to "=MAX(0, 37.5-M9)" could be zero is if M9
is greater than or equal to 37.5.

That's what my formula's conditional tests for.

In article ,
"skateblade" wrote:

Thanks for the response.
I tried it and it returned 37.5 in the cell. I don't know if it makes a
difference, the cell is formated as a number with 1 decimal.
I ned it to show a blank cell.

"JE McGimpsey" wrote:

One way:

=IF(M9=37.5, "", 37.5-M9)

In article ,
"skateblade" wrote:

I have a formula =MAX(0,37.5-M9) and I need the cell to show blank if
the
answer is 0. What can I change?


  #10   Report Post  
skateblade
 
Posts: n/a
Default

Thanks, I tried it and it return the answer 37.5 in the cell. I need the cell
to be blank.

"Richard Buttrey" wrote:

The format won't make a difference.

Try,

=IF(M9=37.5,"",MAX(0,37.5-M9))

Rgds



On Sat, 15 Oct 2005 08:01:03 -0700, "skateblade"
wrote:

Thanks for the response.
I tried it and it returned 37.5 in the cell. I don't know if it makes a
difference, the cell is formated as a number with 1 decimal.
I ned it to show a blank cell.

"JE McGimpsey" wrote:

One way:

=IF(M9=37.5, "", 37.5-M9)

In article ,
"skateblade" wrote:

I have a formula =MAX(0,37.5-M9) and I need the cell to show blank if the
answer is 0. What can I change?


__
Richard Buttrey
Grappenhall, Cheshire, UK
__________________________



  #11   Report Post  
Gord Dibben
 
Posts: n/a
Default

One more crack at it<g

=IF(M9=0,"",IF(M9=37.5,"",(37.5-M9)))


Gord Dibben Excel MVP

On Sat, 15 Oct 2005 10:30:32 -0700, "skateblade"
wrote:

Thanks, I tried it and it return the answer 37.5 in the cell. I need the cell
to be blank.

"Richard Buttrey" wrote:

The format won't make a difference.

Try,

=IF(M9=37.5,"",MAX(0,37.5-M9))

Rgds



On Sat, 15 Oct 2005 08:01:03 -0700, "skateblade"
wrote:

Thanks for the response.
I tried it and it returned 37.5 in the cell. I don't know if it makes a
difference, the cell is formated as a number with 1 decimal.
I ned it to show a blank cell.

"JE McGimpsey" wrote:

One way:

=IF(M9=37.5, "", 37.5-M9)

In article ,
"skateblade" wrote:

I have a formula =MAX(0,37.5-M9) and I need the cell to show blank if the
answer is 0. What can I change?


__
Richard Buttrey
Grappenhall, Cheshire, UK
__________________________


  #12   Report Post  
pisanichris
 
Posts: n/a
Default Need the cell to show blank


TO REMOVE THE 0's:

SELECT THE CELL/ROW/COLUMN, CLICK ON 'FORMAT', 'CONDITIONAL
FORMATTING'.

Then set the condition that if that cell/s are equal to 0, you can
choose a different format (font, background colour, text colour, text
size, etc - in your case, that the text colour is white ( so it won't
show))

Regards,
CPisani


--
pisanichris
------------------------------------------------------------------------
pisanichris's Profile: http://www.excelforum.com/member.php...o&userid=28138
View this thread: http://www.excelforum.com/showthread...hreadid=476499

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
Setting Purely BLANK Cell yokato95 Excel Worksheet Functions 4 August 18th 05 04:43 PM
Possible Lookup Table Karen Excel Worksheet Functions 5 June 8th 05 09:43 PM
blank cell turns to 0 LMB New Users to Excel 2 April 25th 05 03:57 PM
Show Blank is cell value=0 but count as a zero in sum. How to format this cell ? Markus Obermayer Excel Worksheet Functions 1 January 4th 05 08:01 PM
Make a cell blank? Matthew Leingang Excel Worksheet Functions 1 November 23rd 04 04:54 PM


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

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"