Google Sheets – Compile Cells Based on Certain Value

formulasgoogle sheetsgoogle-sheets-query

In Google Sheets, I have a range of values as follows:

enter image description here

I am looking for a formula that will search the range, find all of the cells that is a 'wire' (contains the term "wire") and outputs the range to a compiled list of all of the wires in the A column list like this:

enter image description here

I could tell you what I've tried, but I haven't even gotten close, so I feel it's irrelevant.

Here is a copy of the example spreadsheet for copy-paste if needed: https://docs.google.com/spreadsheets/d/1QDvAo5epuwBEzeOPrBckb1GO6wKOA6q6K83C1-SeQGA/edit?usp=sharing

Best Answer

=QUERY(A:A; "where A contains 'Wire'")

0