Special Copy, Paste Special macro

  • Thread starter Thread starter usmc-r70
  • Start date Start date
U

usmc-r70

I need a macro button that will, on selection, evaluate if a cell from
A39:A79 contains the text "Not Locked" and then will change all the
corresponding formulas in those rows for columns B:I (B39:I79) into text
(i.e. Their formula values: Copy > Paste Special > Paste Values).
 
The below works on the activesheet ..Try and feedback..

Sub Macro1()
Dim varData As Variant
If WorksheetFunction.CountIf(Range("A39:A79"), "*Not Locked*") > 0 Then
varData = Range("B39:I79")
Range("B39:I79").Value = varData
End If
End Sub

If this post helps click Yes
 
Try the code as following.

Dim rng As Range
For Each rng In Range("A39:A79 ")
If rng.Value = "Not Locked" Then
Range("B" & rng.Row & ":I" & rng.Row).Value = Range("B" &
rng.Row & ":I" & rng.Row).Value
End If
Next rng
 
Your code did exactly what I needed, thanks.

Ã÷À˵ÄË«Óã said:
Try the code as following.

Dim rng As Range
For Each rng In Range("A39:A79 ")
If rng.Value = "Not Locked" Then
Range("B" & rng.Row & ":I" & rng.Row).Value = Range("B" &
rng.Row & ":I" & rng.Row).Value
End If
Next rng
 
Back
Top