Excel formula help....

Soldato
Joined
13 Jan 2010
Posts
5,155
Location
The 'Shire'
I have a spreadsheet which I have organised but I need to remove full rows of data that have certain words in certain columns (area managers and coordinators) and is it possible to attach it to a macro?

Thanks in advance for any help
 
easiest way without messing in VBA is to just add a new column with a formula looking for the text needed - if it finds it then provide a flag (1 or 0) which you can then sort the rows on and then bulk delete. You can add more flags for multiple criteria or nest the ifs if easier.

e.g. =IF(ISERROR(FIND("manager",A1)),0,1)
 
I'll look into power query.

So my question is that it can all be done with one hit basically, get rid of the 10 top rows and shift the data up, delete the left column and shift the data left, then delete entire rows if a certain column contains a specific word or words?!?
 
Back
Top Bottom