A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Excel 0 and Blank fields.



 
 
Thread Tools Display Modes
  #1  
Old March 8th, 2006, 03:45 PM posted to microsoft.public.excel.misc
external usenet poster
 
Posts: n/a
Default Excel 0 and Blank fields.



I am working on a spreadsheet that is relatively simple, but I need to have
empty cells and cells input with a 0 to give a referenced cell different
values. I have used the following formulas to do this for a cell with a 0
in it but I have found that this interprets an empty cell the same as a cell
with a 0 in it.



Cell C2 Ex.1: =IF (A2+A3=0), " " , SUM (A2:A3)

RESULTS: If I enter a 0 in A2 or A3 or if I leave A2 or A3 empty the
returned value will be blank.



Cell C2 Ex.2: =IF (A2+A3= " " ), " " , SUM (A2:A3)

RESULTS: I get the same results as Ex.1.




A
B
C

1
Input Data

Output Data

2




3
00








What I need is: IF (A2 AND A3= Blank ) THEN return blank, ELSE SUM (A2:A3)
[even if the value(s) entered into A2 and/or A3 is/are 0 or any combination
of zeros and blanks, I need it to return a 0.]



Thanks for any input.


  #2  
Old March 8th, 2006, 04:11 PM posted to microsoft.public.excel.misc
external usenet poster
 
Posts: n/a
Default Excel 0 and Blank fields.

Try:

=IF(OR(ISNUMBER(A2),ISNUMBER(A3)),SUM(A2:A3)," ")

HTH


" wrote:



I am working on a spreadsheet that is relatively simple, but I need to have
empty cells and cells input with a 0 to give a referenced cell different
values. I have used the following formulas to do this for a cell with a 0
in it but I have found that this interprets an empty cell the same as a cell
with a 0 in it.



Cell C2 Ex.1: =IF (A2+A3=0), " " , SUM (A2:A3)

RESULTS: If I enter a 0 in A2 or A3 or if I leave A2 or A3 empty the
returned value will be blank.



Cell C2 Ex.2: =IF (A2+A3= " " ), " " , SUM (A2:A3)

RESULTS: I get the same results as Ex.1.




A
B
C

1
Input Data

Output Data

2




3
00








What I need is: IF (A2 AND A3= Blank ) THEN return blank, ELSE SUM (A2:A3)
[even if the value(s) entered into A2 and/or A3 is/are 0 or any combination
of zeros and blanks, I need it to return a 0.]



Thanks for any input.



  #3  
Old March 8th, 2006, 04:16 PM posted to microsoft.public.excel.misc
external usenet poster
 
Posts: n/a
Default Excel 0 and Blank fields.

Hi,

Try this formula:

=IF(AND(A2="",A3=""),"BLANK",SUM(A2:A3))

If you enter a zero into A2 or A3, you will see a zero is returned, but if
you do not enter any data into A2 or A3, you will see BLANK is returned.

Ewan.

" wrote:



I am working on a spreadsheet that is relatively simple, but I need to have
empty cells and cells input with a 0 to give a referenced cell different
values. I have used the following formulas to do this for a cell with a 0
in it but I have found that this interprets an empty cell the same as a cell
with a 0 in it.



Cell C2 Ex.1: =IF (A2+A3=0), " " , SUM (A2:A3)

RESULTS: If I enter a 0 in A2 or A3 or if I leave A2 or A3 empty the
returned value will be blank.



Cell C2 Ex.2: =IF (A2+A3= " " ), " " , SUM (A2:A3)

RESULTS: I get the same results as Ex.1.




A
B
C

1
Input Data

Output Data

2




3
00








What I need is: IF (A2 AND A3= Blank ) THEN return blank, ELSE SUM (A2:A3)
[even if the value(s) entered into A2 and/or A3 is/are 0 or any combination
of zeros and blanks, I need it to return a 0.]



Thanks for any input.



 




Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
existing excel file when clicked opens blank excel document snows_24 General Discussion 1 May 21st, 2005 07:15 PM
Closing up Blank fields on a report Matthew Wayne Setting Up & Running Reports 1 January 28th, 2005 02:33 AM
Prevent Blank Records being written. Need Help. Robert Nusz @ DPS Using Forms 4 December 29th, 2004 05:15 PM
Macro help please: Excel data to word doc anna-maria General Discussion 5 June 30th, 2004 11:53 PM
Blank Form Fields Eli Using Forms 3 June 1st, 2004 12:46 AM


All times are GMT +1. The time now is 07:34 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.