Recall & Review
beginner
What does the QUERY function in Google Sheets do?
The QUERY function lets you ask questions about your data using a language similar to SQL. It helps you filter, sort, and summarize data easily.
Click to reveal answer
beginner
Why is QUERY considered powerful compared to other functions?
QUERY combines filtering, sorting, and aggregation in one formula. It can replace multiple steps with a single, easy-to-read command.
Click to reveal answer
beginner
How does QUERY help with real-life tasks like managing a sales list?
You can quickly find sales above a certain amount, group sales by product, or sort customers by purchase date, all with one QUERY formula.
Click to reveal answer
beginner
What is the basic syntax of the QUERY function?
QUERY(data, query_string, [headers]) where 'data' is your range, 'query_string' is your question in quotes, and 'headers' is optional to tell how many header rows you have.
Click to reveal answer
intermediate
Can QUERY function handle multiple conditions? Give an example.
Yes! For example, QUERY(A1:D10, "select A, B where C > 100 and D < 50") filters rows where column C is over 100 and column D is under 50.
Click to reveal answer
What is the main purpose of the QUERY function in Google Sheets?
✗ Incorrect
QUERY lets you ask questions about your data to filter, sort, and summarize it easily.
Which of these is the correct basic syntax for QUERY?
✗ Incorrect
The correct order is data range first, then the query string, then optional headers.
How can QUERY help with a sales list?
✗ Incorrect
QUERY can filter sales data based on conditions like amount.
Can QUERY combine multiple conditions in one formula?
✗ Incorrect
QUERY supports multiple conditions combined with AND and OR.
Which of these is NOT something QUERY can do?
✗ Incorrect
QUERY works with data inside sheets; it cannot send emails.
Explain in your own words why QUERY is considered the most powerful function in Google Sheets.
Think about how QUERY replaces many steps with one formula.
You got /5 concepts.
Describe a real-life example where you could use QUERY to manage data efficiently.
Imagine you have a list of items and want to find or organize specific information quickly.
You got /4 concepts.