I want to set every cell in a Range to specific Text value- I haven't got it yet, but this is the approach I've started with... it doesn't work. What's the correct method?
Thanks.
Code:
Private Sub cmdResetVisCheck_Click()
Dim mySheetWS as Worksheet, VisRng as Range
Set mySheetWS = Worksheets("Parts Wrkup")
Set VisRng = mySheetWS.Range("V2:V" & mySheetWS.Cells(Rows.Count, "V").End(xlup).Row
'Next is set each cell value in Range to "Visual Check"
'******************************************
For Each Cell in Range(VisRng)
Cell.Value = "Visual Check"
Next
End Sub
Thanks.