HELP.

U

uobt

i need a vba script that will select any cell interiorcolor = 36
and then copy special paste value?
 
D

Don Guillett

Help is a lousy subject line and your explanation leaves a lot to mind read
over. Could you try again.
 
J

John Mansfield

UOBT,

Try something like this . . .

Sub CopyData()
Dim Rng As Range
For Each Rng In Range("A1", "A10")
If Rng.Interior.ColorIndex = 36 Then
Rng.Copy
Rng.Offset(0, 2).PasteSpecial Paste:=xlPasteValues
End If
Next Rng
End Sub

You will need to change the copy destination to fit your needs.
 
D

Don Guillett

or

for each c in selection
if c.interior.colorindex=36 then c.formula = c.value
next c
 

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