Row Color

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???
 
G

Guest

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)
 
G

Guest

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)
 
G

Gord Dibben

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
 
G

Guest

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
 
G

Guest

What if I want to add this feature to a macro??? How would I go about it
Any further help appreciated
 
G

Gord Dibben

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
 
G

Guest

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
 

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