Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
sea kayaker
 
Posts: n/a
Default how eliminate zeros in blank cells using paste link

"pastelink" in excel 2003: blank cells in source worksheet become zeros
in detination worksheet. how can i eliminate them. thanks very much
  #2   Report Post  
RagDyeR
 
Posts: n/a
Default

One way:

=IF(Sheet2!$C$2="","",Sheet2!$C$2)
--

HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================


"sea kayaker" <sea wrote in message
...
"pastelink" in excel 2003: blank cells in source worksheet become zeros
in detination worksheet. how can i eliminate them. thanks very much


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

Method 1. Hide the zeros using ToolsOptionsView. Uncheck "zero values"

Method 2. Use an IF formula in the linked cells.

=IF(ISBLANK(Sheet1!A1,"",Sheet1A1)

If you have a great whack of these, after you paste the links, run this macro
on the selected range.

Sub ISBLANK_Add()
Dim myStr As String
Dim cel As Range
For Each cel In Selection
If cel.HasFormula = True Then
If Not cel.Formula Like "=IF(ISBLANK*" Then
myStr = Right(cel.Formula, Len(cel.Formula) - 1)
cel.Value = "=IF(ISBLANK(" & myStr & "),""""," & myStr & ")"
End If
End If
Next
End Sub


Gord Dibben Excel MVP


On Sat, 16 Apr 2005 13:03:01 -0700, "sea kayaker" <sea
wrote:

"pastelink" in excel 2003: blank cells in source worksheet become zeros
in detination worksheet. how can i eliminate them. thanks very much


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
blank cells R.VENKATARAMAN Excel Discussion (Misc queries) 1 April 6th 05 10:25 AM
Blank Cells in Pivot Tables Greg Excel Discussion (Misc queries) 1 March 16th 05 09:23 PM
Not able to Paste cells Lady Layla Excel Discussion (Misc queries) 5 March 14th 05 04:25 PM
Eliminate creating list that returns blank cells Marc Todd Excel Worksheet Functions 1 January 26th 05 09:58 PM
How can I dynamically eliminate blank cells in a given range in E. Scott Steele Excel Worksheet Functions 6 December 17th 04 03:23 AM


All times are GMT +1. The time now is 08:21 PM.

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"