1. Which Excel function tests a condition and returns one value if TRUE and another value if FALSE?
Show Answer & Explanation
★ Key Takeaway: IF is Excel’s “decision” function—it helps you automate rules.
Explanation: IF checks a condition like A1>=60. If the condition is TRUE, it returns one result; if FALSE, it returns a different result. For example, =IF(A1>=60,"Pass","Fail") automatically labels results without manual checking.
Why other options are incorrect:Tip: IF and nested IF are the “gateway” to real Excel skills. If the logic feels confusing, guided practice makes it click fast. Explore 1-on-1 Excel tutoring on Fiverr →
2. Which formula correctly returns "High" if A1 is 90 or more, "Medium" if A1 is 70 or more, otherwise "Low"?
Show Answer & Explanation
★ Key Takeaway: Nested IF helps you classify values into multiple levels (not just two).
Explanation: Excel checks the first rule (A1 is 90 or more). If that is TRUE, it returns "High" immediately. If it is FALSE, Excel checks the next rule (A1 is 70 or more) and returns "Medium" if TRUE; otherwise it returns "Low". This “check from highest to lowest” order prevents wrong results.
Why other options are incorrect:3. Which formula returns "Eligible" only when A1 is at least 18 and B1 is "Yes"?
Show Answer & Explanation
★ Key Takeaway: Use AND when every rule must be true at the same time.
Explanation: AND checks both conditions together and returns TRUE only if both are true. Then IF uses that TRUE/FALSE result to return a clear label. This is common in real work: approvals, eligibility, compliance checks, and filtering who qualifies.
Why other options are incorrect:4. Which function is the simplest way to show a custom value when a formula returns an error?
Show Answer & Explanation
★ Key Takeaway: IFERROR replaces messy error messages with a clean result you control.
Explanation: Many formulas can produce errors (like #DIV/0! or #N/A). IFERROR lets you return something friendly instead, such as a blank ("") or text like "Not Found". Example: =IFERROR(A1/B1,"") keeps your sheet readable when B1 is zero.
Why other options are incorrect:5. In VLOOKUP, where must the lookup value be located inside the table_array?
Show Answer & Explanation
★ Key Takeaway: VLOOKUP can only search in the first column of the table you select.
Explanation: VLOOKUP searches vertically down the first column of your table_array to find the lookup value, then returns data from a column to the right. This is why VLOOKUP often fails when your “key column” is not the first column.
Why other options are incorrect:6. In VLOOKUP(A2, D:F, 2, FALSE), what does the number 2 mean?
Show Answer & Explanation
★ Key Takeaway: col_index_num tells VLOOKUP which column to return from the selected table.
Explanation: In VLOOKUP, the column number is counted from the left side of the table_array. So if your table is D:F, then D is column 1, E is column 2, and F is column 3. That’s why “2” returns from column E.
Why other options are incorrect:7. Which INDEX and MATCH formula correctly returns a value from column C where column A matches E1?
Show Answer & Explanation
★ Key Takeaway: MATCH finds the position; INDEX returns the value from that position.
Explanation: MATCH(E1, A:A, 0) finds the row where E1 appears in column A using exact matching. INDEX then uses that row number to return the value from column C. This method is flexible because you can “look left” or “look right” depending on which column INDEX returns from.
Why other options are incorrect:8. Which MATCH match_type should you use when you want an exact match?
Show Answer & Explanation
★ Key Takeaway: Use MATCH with 0 when you need a perfect match (most common in real work).
Explanation: match_type 0 tells Excel to find the exact lookup value in the range. If it does not exist, Excel returns #N/A. This behavior is important because it prevents Excel from “guessing” the nearest match.
Why other options are incorrect:9. Which function is a modern replacement for VLOOKUP in many Excel versions and can return results from any column?
Show Answer & Explanation
★ Key Takeaway: XLOOKUP is a flexible lookup tool because you choose both the lookup range and the return range.
Explanation: VLOOKUP usually needs the lookup value in the first column of the table and returns only to the right. XLOOKUP is easier because it lets you search one range (like an ID column) and return from any other range (like a name or price column), even if it is on the left. This makes your formulas stronger when columns move or tables change.
Why other options are incorrect:Tip: Lookups feel hard until you practice with real tables. A tutor can guide you through XLOOKUP and INDEX/MATCH step by step. Find an Excel tutor on Fiverr →
10. Which function sums values that meet multiple conditions (for example, Region = "East" and Product = "Laptop")?
Show Answer & Explanation
★ Key Takeaway: SUMIFS is used when you need conditional totals with more than one rule.
Explanation: SUMIFS adds numbers only for rows that match all your criteria. This is extremely common in real reporting, like summing sales for a specific region, month, and product type without filtering the table manually.
Why other options are incorrect:11. Which function counts rows that meet multiple conditions?
Show Answer & Explanation
★ Key Takeaway: COUNTIFS answers “How many match all these rules?”
Explanation: COUNTIFS applies two or more conditions (like Region="East" and Status="Completed") and counts only the rows that meet every condition. It’s used in dashboards, quality checks, and KPI summaries where you need filtered counts quickly.
Why other options are incorrect:12. Which function calculates the average of values that meet multiple conditions?
Show Answer & Explanation
★ Key Takeaway: AVERAGEIFS is for conditional averages with more than one rule.
Explanation: AVERAGEIFS helps answer questions like “What is the average sale amount for East region in January?” without filtering the dataset. It averages only the rows that match all the criteria you specify.
Why other options are incorrect:13. Which function removes extra spaces from text, leaving only single spaces between words?
Show Answer & Explanation
★ Key Takeaway: TRIM is a simple cleaning tool that fixes messy spacing in text data.
Explanation: TRIM removes leading spaces, trailing spaces, and extra spaces between words. This matters because extra spaces can break lookups and comparisons—“Apple” and “Apple ” can look the same to a human, but Excel treats them as different text.
Why other options are incorrect:14. Which function returns a specific number of characters from the left side of a text string?
Show Answer & Explanation
★ Key Takeaway: LEFT is used to extract the beginning part of text—very useful in data cleaning.
Explanation: LEFT(text, num_chars) takes characters from the start of a text value. For example, if an ID is “BD-1025”, =LEFT(A1,2) returns “BD”. People use this to split codes, clean imported data, and build categories.
Why other options are incorrect:15. Which function combines text from multiple cells and can add a delimiter like a comma between items?
Show Answer & Explanation
★ Key Takeaway: TEXTJOIN is a smart way to merge text with separators like commas, spaces, or hyphens.
Explanation: TEXTJOIN lets you choose a delimiter and combine many values at once, such as joining first name and last name across multiple cells. For example, TEXTJOIN(", ", TRUE, A1:A5) can create a clean comma-separated list while ignoring blanks.
Why other options are incorrect:16. Which function rounds a number to a specified number of digits?
Show Answer & Explanation
★ Key Takeaway: ROUND is used when you want clean, consistent decimal values.
Explanation: ROUND(number, num_digits) rounds a value normally, like 12.345 to 12.35 when rounding to 2 decimals. This is important in money, grades, and reports where long decimals look messy or cause confusion.
Why other options are incorrect:17. Which function returns today’s date and updates automatically each day?
Show Answer & Explanation
★ Key Takeaway: TODAY gives the current date and refreshes automatically.
Explanation: TODAY returns only the date (no time), and it updates when the workbook recalculates. It is commonly used for tracking deadlines, calculating age, or showing “days left” using formulas like TODAY() - start_date.
Why other options are incorrect:18. Which function creates a valid Excel date from separate year, month, and day values?
Show Answer & Explanation
★ Key Takeaway: DATE helps you build clean dates from numbers—perfect for imported data.
Explanation: DATE(year, month, day) returns a real Excel date value that you can sort, filter, and calculate with. It is useful when data comes as separate parts, like year in one column and month in another, and you need a proper date for analysis.
Why other options are incorrect:19. In Excel formulas, what does the dollar sign ($) do in a cell reference like $A$1?
Show Answer & Explanation
★ Key Takeaway: $ is used for absolute references—one of the most important skills in Excel.
Explanation: When you copy a formula, Excel normally shifts cell references (relative references). $A$1 locks both column A and row 1 so the reference stays fixed. This is essential for tax rates, fixed conversion values, or any “constant” cell used across many rows.
Why other options are incorrect:20. Which statement best describes why advanced formulas are valuable in real Excel work?
Show Answer & Explanation
★ Key Takeaway: Advanced formulas help you build “smart spreadsheets” that update automatically.
Explanation: When you use functions like IF, IFERROR, SUMIFS, and lookup formulas, your workbook can update results instantly when new data comes in. This saves time, reduces manual work, and helps you produce consistent reports—something employers love.
Why other options are incorrect: