Linking between 2 worksheets

  • Thread starter Thread starter Carla
  • Start date Start date
C

Carla

I have a master price list that is linked to another worksheet in the same
file. I have a column for the date that I update the pricing, although some
cells don't have anything filled in. When I copy from a cell that has
nothing in it and paste the link in another worksheet, it shows as a "0". Is
there any way to fix this?
 
I have a master price list that is linked to another worksheet in the same
file.  I have a column for the date that I update the pricing, although some
cells don't have anything filled in.  When I copy from a cell that has
nothing in it and paste the link in another worksheet, it shows as a "0".  Is
there any way to fix this?

Use if instead of formula you are currently using. IF(X = 0 ,Then "",
Else X)

Jay
 
Or you could use a custom number format similar to...

#,##0;[Red](#,##0);"";@
-or-
#,##0;(#,##0);;@

The above are in four sections separated by semi-colons.
The sections in order apply to: positives, negatives, zero, text.
--
Jim Cone
Portland, Oregon USA
http://www.realezsites.com/bus/primitivesoftware
(Excel Add-ins / Excel Programming)


"Carla"
wrote in message
I have a master price list that is linked to another worksheet in the same
file. I have a column for the date that I update the pricing, although some
cells don't have anything filled in. When I copy from a cell that has
nothing in it and paste the link in another worksheet, it shows as a "0". Is
there any way to fix this?
 
=if(master!a1="","",master!a1)


I have a master price list that is linked to another worksheet in the same
file. I have a column for the date that I update the pricing, although some
cells don't have anything filled in. When I copy from a cell that has
nothing in it and paste the link in another worksheet, it shows as a "0". Is
there any way to fix this?
 

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

Back
Top