I am building a macro in VBA to do a number of different functions, one of them will be copying data into the report from a different spreadsheet. The master spreadsheet that will be giving the data has data on all clients, I am using a VLOOKUP and then importing all the data that is relevant to that client. Is there a way to either:
1) look down a column for the first item that is #N/A
and selecting all data above it (pulling the row number of the first #N/A
would be useful and make the second bit easy
2) delete the row is column U
is #N/A - the problem I've found with this is that the loop is very big and takes a long time, I used similar to the below link
I want to delete the row if columns C,D and E has #N/A using VBA