So I want to find a specific string in a range, get its address and copy its value into a new cell, which depends on the old address
Here is what I've tried until now:
Dim c As Range
For Each c In Range("F1:F1500")
If InStr(1, c.Text, "Overall Result") Then
Range(c).Select
Selection.Cut
Range(newAddress).Select
ActiveSheet.Paste
End If
Next c
But I'm not sure about how to get the right address of the cell. The new cell should be the old address.row and the old address.column+1