filtering - Spreadsheet and address: how to filter based on a range -


i have spreadsheet thousands of entries. need extract data based on content of spreadsheet.

the file looks this:

   id    location   address  ------   ------  ------------  000001   london   oxford st.  000002   london   ladbroke sq.  000003   london   beryl rd. ...       ...        ... 

on second sheet have list of address. need filter content of first sheet based on address listed.

i thought arrayformula the work i'm stuck this:

=arrayformula(sum(((sample!$a:$a)=$a2) * ((sample!$b:$b)=b$1) * (sample!$c:$c) )) 

if data on first sheet looked this: enter image description here

one option index(match()) on second sheet: enter image description here

another option - creating separate column filtering in first sheet: enter image description here

too bad conditional formatting formulas not work when take references sheet.


Comments

Popular posts from this blog

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -