So I have a workbook with a master sheet column f has my citys. I need to copy a unique list of citys from the master sheet to each existing sheet.
I've looked at :
sheets("MasterSheet").Select
Columns("F:F").Select
Selection.Copy
sheets("Existingsheet").Select
Columns("F:F").Select
ActiveSheet.Paste
Application.CutCopyMode = False
Range("F1:F3125").AdvancedFilter Action:=xlFilterInPlace, Unique:=True
But I'm missing a loop as well as grabbing the existing sheet names dynamically. I'm thinking there must be a quicker way to get to where I want to be.
Any direction would be most welcome. Thanks.