W
whicks
I am a beginner at writing my own VBA code. I have roster of names
and associated information. What I would like my code to do is, find
a certain value in column V and replace information in column AG &
column AJ in the same row.
Here is what I have so far...
Range("V1").Select
Do While Activecell <> ""
Do While Activecell = "X"
ActiveCell.Offset(0, 11) = "XYZ"
ActiveCell.Offset(0, 14) = "XYZ"
ActiveCell.Offset(1, 0).Select
Loop
Loop
End Sub
It seems right to me but doesn't work any suggestions are welcome.
and associated information. What I would like my code to do is, find
a certain value in column V and replace information in column AG &
column AJ in the same row.
Here is what I have so far...
Range("V1").Select
Do While Activecell <> ""
Do While Activecell = "X"
ActiveCell.Offset(0, 11) = "XYZ"
ActiveCell.Offset(0, 14) = "XYZ"
ActiveCell.Offset(1, 0).Select
Loop
Loop
End Sub
It seems right to me but doesn't work any suggestions are welcome.