Forum Discussion
A819A1L
Mar 30, 2021Brass Contributor
Need macro to auto-populate master sheet with data from other tabs
Hi there! I'm here looking for some help with an excel problem. Attached is the workbook I need to edit. All the sheets are identical (with the exception of one hidden sheet) with the sheet names...
- Apr 03, 2021I think this is the formula you need:
=FILTER(Data!A3:Q10000,((Data!L3:L10000<>"")+(Data!M3:M10000<>"")),"")
The + in the filter criteria will move records to the prospects sheet if 'L' OR 'M' is not blank. With FILTER, I like to omit the header row and start with the first row of data. I've set it down to 10,000. You may change that as needed.
A819A1L
Mar 31, 2021Brass Contributor
Thanks Patrick2788
I've edited the report so that all the data is on one sheet. What formulas should I use that would achieve what I need?
I tried with FILTER but got a value error. I haven't used this formula much so I 'm not sure if I'm doing it correctly.
Cheers
Patrick2788
Apr 03, 2021Silver Contributor
I think this is the formula you need:
=FILTER(Data!A3:Q10000,((Data!L3:L10000<>"")+(Data!M3:M10000<>"")),"")
The + in the filter criteria will move records to the prospects sheet if 'L' OR 'M' is not blank. With FILTER, I like to omit the header row and start with the first row of data. I've set it down to 10,000. You may change that as needed.
=FILTER(Data!A3:Q10000,((Data!L3:L10000<>"")+(Data!M3:M10000<>"")),"")
The + in the filter criteria will move records to the prospects sheet if 'L' OR 'M' is not blank. With FILTER, I like to omit the header row and start with the first row of data. I've set it down to 10,000. You may change that as needed.
- A819A1LApr 06, 2021Brass ContributorThanks, I've got it working now.