Welcome to EdListen:
Never Stop Learning

Using the filter button, =Query(), =Filter() functions for Google Form/Spreadsheet Data

Google form data comes into a spreadsheet nicely, but often it is only a small portion of the data that someone would like view.   Below are some functions and tools that make sifting that data much easier.

Filter Button:

  • The filter button is a very quick way to only show certain fields.  You can apply multiple filters to the data to show only what you want to see.


Filter Formula (  =filter()  ):
  • The filter formula is a more permanent solution to filtering data in a spreadsheet.  The only catch is that it pulls all the columns.   To use the =filter() formula on form data, you should create a new sheet.  Enter the headers into the sheet that match the questions (tip: use =Form Responses 1!A1), then in cell A2 put your =filter() formula.
=filter(<data range to filter>, <criteria>)

=filter('Form Responses 1'!A2:L5042,'Form Responses 1'!B2:B5042="Cat")
=filter('Form Responses 1'!A2:L5042,('Form Responses 1'!B2:B5042="Dog")+('Form Responses 1'!B2:B5042="Rabbit"))


Query Formula (  =query()  ):
  • The query formula works like the filter function, however it allows you to choose only the columns you want to view.  This makes it ideal for creation displays of data that is only relevant to the viewer. The catch is that it uses SQL syntax which is not well documented in Google's documentation, but there is plenty on the web.  Additionally this allows you to filter on a column that is not being viewed, allowing for better formatting for printing or viewing.
=query(<data range to filter>, "Select <Columns> where <criteria>")

=query('Form Responses 1'!1:1007,"select A,D where B = 'Cat'")

EdListen 50: It is good to be back (1:1 update)


We are back.  The Chromebooks have been rolled out to students and we talk about the experience.

We look forward to your feedback and comments, and Never Stop Learning.