Excel Quiz 58 Posted on January 12, 2025August 20, 2026 by Vijay Verma Excel Quiz 58 Please fill in your Name & Email to take the Quiz (Name and E Mail are not shared with anybody else. E Mail is used to mail the pdf certificate to you when you pass) 1 / 10 Cell A2 contains the string "Red,Green;Blue". Which modern array formula correctly splits this text into separate columns using both the comma and semicolon as delimiters? =SPLIT(A2, ",;") =TEXTSPLIT(A2, ",;") =DELIMIT(A2, ",", ";") =TEXTSPLIT(A2, {",",";"}) 2 / 10 Cell A2 contains a sentence with words separated by standard spaces. Using modern dynamic arrays, what is the most concise way to extract exactly the 3rd word from the sentence? =INDEX(TEXTSPLIT(A2, " "), 3) =MID(A2, FIND(" ", A2, 3), 5) =CHOOSE(3, TEXTSPLIT(A2, " ")) =WORD(A2, 3, " ") 3 / 10 You need to find the latest price of a product in a log where new entries are added to the bottom. Which XLOOKUP search mode parameter will search from the bottom of the array up to the top? Match mode = -1 Search mode = -1 Search mode = 2 Match mode = 2 4 / 10 Column B contains Item Quantities and Column C contains Unit Prices. Which formula calculates the total revenue without requiring a separate helper column to multiply each row? =SUM(B2:B10) * SUM(C2:C10) =SUMPRODUCT(B2:B10, C2:C10) =PRODUCT(B2:B10, C2:C10) =MULTIPLY(B2:B10, C2:C10) 5 / 10 Column A contains a list of cities with many duplicates. Which formula returns a dynamically sorted list of unique cities? =SORT(UNIQUE(A2:A100)) =UNIQUE(SORT(A2:A100)) Both A and B will return the correct result =SORTBY(UNIQUE(A2:A100), 1) 6 / 10 You are merging two tables in Power Query based on a common Customer ID. You want to keep all rows from the first table, and only the matching rows from the second table. Which Join Kind should you select? Inner Right Outer Full Outer Left Outer 7 / 10 A complex financial model is running slowly due to excessive recalculations. Which of these functions is "volatile" and triggers a recalculation every time any change is made anywhere in the worksheet? INDEX OFFSET MATCH CHOOSE 8 / 10 Column A contains Employee names, and Column B contains their Department. Which formula returns employees from either the "IT" department OR the "HR" department? =FILTER(A2:A100, (B2:B100="IT")*(B2:B100="HR")) =FILTER(A2:A100, AND(B2:B100="IT", B2:B100="HR")) =FILTER(A2:A100, (B2:B100="IT")+(B2:B100="HR")) =FILTER(A2:A100, OR(B2:B100="IT", B2:B100="HR")) 9 / 10 Cell D1 contains the exact text string "Sales!A1:A10". Which formula correctly sums the range specified by the text in cell D1? =SUM(D1) =SUM(REF(D1)) =SUM(INDIRECT(D1)) =SUM(VALUE(D1)) 10 / 10 You need to calculate (x+y)*x, where 'x' is the sum of A1:A10 and 'y' is the sum of B1:B10. Which formula uses LET correctly to define variables and execute the calculation? =LET((x+y)*x, x, SUM(A1:A10), y, SUM(B1:B10)) =LET(x, SUM(A1:A10), y, SUM(B1:B10), (x+y)*x) =LET(SUM(A1:A10)=x, SUM(B1:B10)=y, (x+y)*x) =LET(x=SUM(A1:A10), y=SUM(B1:B10), result=(x+y)*x) Your score is LinkedIn Facebook Twitter Retake quiz Exit