I ideally like to get it to sort just the data, and not the entire workbook
The below line finds the last used cell from 65000 row in Col A which in you're example is row 10 so you won't need the name ranged to make it dynamic as it already is
Also what exactly is "drow"?
drow is a variable range and Everstrivin should of declare it e.g
Dim drow As Range
For Each drow In Range("A1:A" & Range("A65000").End(xlUp).Row)
If drow.Value = "EUR" Then
Range("G" & drow.Row) = "INSERT TEXT"
End If
Next
HTH
VBA Noob
Bookmarks