On one tab, I have a list of depots that all have a unique depot number attributed to them. On the other tab, I have a list of data that includes numerous lines for each depot with their depot numbers on each line.
I basically need to create a file for each depot with only that depots info in it.
Usually, I would start at the top of the list of depots, and use
While Not ActiveCell.Value=""
Then I copy the sheet, delete any lines that didnt involve that depot, save as a new file and then use ActiveCell(2,1).Select to select the next depot and repeat.
However, I need a way of doing this without using select. Can someone advise please?