Thankyou very much. Works great. I've amended it slightly to the following:
Sub FillEUR()
ActiveWorkbook.Names.Add Name:="MyRange", RefersToR1C1:= _
"=OFFSET(Sheet1!R1C1,0,0,COUNTA(Sheet1!C1),COUNTA(Sheet1!R1))"
For Each drow In Range("A:A")
If drow.Value = "EUR" Then
Range("G" & drow.Row) = "INSERT TEXT"
End If
Next
End Sub
The Dynamic Name Range does nothing at the moment, but when I write the code, I ideally like to get it to sort just the data, and not the entire workbook. Appreciate this might be getting too complicated, but is there anyway to amend it to search just the data defined in "MyRange"? Also what exactly is "drow"? Tried Googling but nothing came up.
Thanks so much again for the help, very much appreciated.
Bookmarks