I have two columns with different values; A and B, if the values of column B start with letter F, I want that value (the one starting with F) to replace the current value in column A. This is the VBA code I have so far, not sure if I am heading in the correct direction.
Private Sub UpdateColumnA()
Dim x As Long
For x = A To Z
If InStr(F, Sheet1.Range("$B$" & x), "thisvalue) > 0 Then
Sheet1.Range("$A$" & x) = Sheet1.Range("$A$" & x) & "sometext"
End If
Next
End Sub
Also, I am not sure what content should be placed in pieces of code "thisvalue" and "sometext"