My data is in columns B:W (technically B2:W25000, since there's a header row)
For each row of data, Column W is either "d" or null ("").
Only rows where the value is "d" are relevant for me and I want to delete the contents of B:W in all the other rows.
I currently use a clunky method of sorting the range by col W, shuttling the non-"d" values to the bottom, then deleting the range where the null("") values start using a few helper cells. Would prefer some VBA that just cleared the rows I don't care about. (I don't care if it just leaves those rows blank; i.e. leaving a bunch of blank rows between the lines of relevant data).
For each row of data, Column W is either "d" or null ("").
Only rows where the value is "d" are relevant for me and I want to delete the contents of B:W in all the other rows.
I currently use a clunky method of sorting the range by col W, shuttling the non-"d" values to the bottom, then deleting the range where the null("") values start using a few helper cells. Would prefer some VBA that just cleared the rows I don't care about. (I don't care if it just leaves those rows blank; i.e. leaving a bunch of blank rows between the lines of relevant data).