Home > Back-end >  Lookup multiple columns in Google Sheets and return a list from the matches
Lookup multiple columns in Google Sheets and return a list from the matches

Time:10-15

I think the title accurately describes what I'm trying to achieve.

enter image description here


update:

=IFERROR(QUERY(HousingData, 
 "select C,B,A,G 
  where G <= "&B3& 
  IF(B4="Y", " and D = '"&B4&"'", )&
  IF(B5="Y", " and E = '"&B5&"'", )& 
  IF(B6="Y", " and F = '"&B6&"'", )&
  IF(B7="Y", " and J = '"&B7&"'", ), 0), "No houses found.")

enter image description here

  • Related