I need a cell to be blank.

D

David Moore

I'm linking cells from another worksheet and I have two questions
which are somewhat related.

1. When I link the cell using ='Worksheet2'A2 the cell that I'm using
puts a 0 or 0:00 if the 'Worksheet2'A2 cell is blank. I would like
this cell to be blank until information has been entered in to the
'Worksheet2'A2 cell. How would I do this?

2. I have two cells next to each other; let's say they are
'Worksheet1'A1 and 'Worksheet1'A2. Both cells are linked to another
cell on 'Worksheet2' using ='Worksheet2'A1 and ='Worksheet2'A2
formula. I would like to make it so that if 'Worksheet1'A1 is blank
then the data in 'Worksheet1'A2 is blank also.

Thanks for your help.
 
P

Pete_UK

1. Use this formula:

=IF('Worksheet2'!A2="","",'Worksheet2'!A2)

2. Try this in sheet1 A2:

=IF(A1="","",IF('Worksheet2'!A2="","",'Worksheet2'!A2)

Hope this helps.

Pete
 
D

David Moore

1. Use this formula:

=IF('Worksheet2'!A2="","",'Worksheet2'!A2)

2. Try this in sheet1 A2:

=IF(A1="","",IF('Worksheet2'!A2="","",'Worksheet2'!A2)

Hope this helps.

Pete

Excellent, everything is working beautifully!
 
D

David Moore

1. Use this formula:

=IF('Worksheet2'!A2="","",'Worksheet2'!A2)

2. Try this in sheet1 A2:

=IF(A1="","",IF('Worksheet2'!A2="","",'Worksheet2'!A2)

Hope this helps.

Pete

Excellent, everything is working beautifully!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top