Row Color

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

Guest

I have Row 31 (the entire row) in my worksheet in color and would like it to
remain as is. However Ill be cutting and pasting from other cells into cells
that lie in this row. When I cut and paste into the colored row the cell in
Row 31 changes to white. How can I cut and paste into my colored row
retaining the color by simply cutting the value and not the actual color???
 
Try Ediy>paste special>value
--
John
MOS Master Instructor Office 2000, 2002 & 2003
Please reply & rate any replies you get

Ice Hockey rules (especially the Wightlink Raiders)
 
Thank You John. That solved my problem


John said:
Try Ediy>paste special>value
--
John
MOS Master Instructor Office 2000, 2002 & 2003
Please reply & rate any replies you get

Ice Hockey rules (especially the Wightlink Raiders)
 
How did that solve your problem?

Paste Special is not available when "cutting" cells, only when "copying".

Unless you are doing it two steps

1. Copy>paste Special>Values.

2. Go back to original cell and clear it.


Gord Dibben MS Excel MVP
 
Do you know of another method Gord?

Gord Dibben said:
How did that solve your problem?

Paste Special is not available when "cutting" cells, only when "copying".

Unless you are doing it two steps

1. Copy>paste Special>Values.

2. Go back to original cell and clear it.


Gord Dibben MS Excel MVP
 
What if I want to add this feature to a macro??? How would I go about it
Any further help appreciated
 
Sub foo()
Dim rng1 As Range
Dim rng2 As Range
Set rng1 = Selection
Set rng2 = Application.InputBox(Prompt:= _
"Select Any Cell to paste to", Type:=8)
rng2.Value = rng1.Value
rng1.ClearContents
End Sub


Gord
 
Thank You
Sorry for the late reply




Gord Dibben said:
Sub foo()
Dim rng1 As Range
Dim rng2 As Range
Set rng1 = Selection
Set rng2 = Application.InputBox(Prompt:= _
"Select Any Cell to paste to", Type:=8)
rng2.Value = rng1.Value
rng1.ClearContents
End Sub


Gord
 
Back
Top