Guzzlr
Well-known Member
- Joined
- Apr 20, 2009
- Messages
- 982
- Office Version
- 2021
- Platform
- Windows
Code:
For Each cl In Range("G7", Range("G" & Rows.Count).End(xlUp))
If cl.Value <> Null Then
cl.Value = "ABCD " & Range("F")
End If
Next cl
Hello All,
I'm attempting to add the letters ABCD to each cell in column G, starting at G7, with the number in column F
Example:
F7=2567, then G7 would = ABCD 2567 (a space would be between ABCD & 2567)
Thanks for the help