Paste Link enters a 0 into the cell where I paste. How do I elemin

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When I use Paste Link the cell that I link to shows a 0 iin the cell if there
is no data in the cell it is linked to. How do I eleminate the 0. I want the
cell to be null if there is no data.
 
It won't be null, but it'll look blank:

=if(a1="","",a1)

Or between sheets:

=if('sheet 1'!a1="","",'sheet 1'!a1)
 
Maybe a simpler way is to apply the custom number format: General;-General;
This format will display whatever the cell is linked to as long as the cell
it links to does not contain a zero. So if the cells you are linking to never
contain a zero this will work, otherwise the "0" will be invisable.
 
And if you don't have any other cells that evaluate to 0 on that worksheet that
you want to see (or just constant 0's, too).
 

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

Similar Threads

Unlink cells- how? 0
"0" in pasted link 1
Copying linked sheet 2
Paste link 2
Excel Data pastes into 2 cells not 1 1
Copy & Paste cell that has alt + enter 2
Activating hyperlinks 3
Linking Cells 7

Back
Top