Excel Quiz 59 Posted on June 20, 2025August 20, 2026 by Vijay Verma Excel Quiz 59 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 a project start date. You need a formula to calculate the exact date that is precisely 6 months before the start date. Which function should you use? =EOMONTH(A2, -6) =EDATE(A2, -6) =DATE(A2, -6) =A2 - 180 2 / 10 You have a single column of 12 months of data in cells A2:A13. You want to wrap this data into a grid containing 4 rows and 3 columns. Which modern dynamic array function correctly reshapes this data? =WRAPROWS(A2:A13, 3) =WRAPCOLS(A2:A13, 3) =MAKEARRAY(A2:A13, 4, 3) =SEQUENCE(4, 3, A2:A13) 3 / 10 When writing a hard-coded 2D array constant in an Excel formula (for example, {1,2;3,4}), what does the semicolon (;) represent? A new column new row A new sheet An arithmetic step 4 / 10 You are creating a custom named function to calculate a 10% discount on a given variable called "price". Which is the correct syntax for writing this LAMBDA function before assigning it to a name? =LAMBDA(price, price*0.9) =LAMBDA(price0.9, price) =LET(price, LAMBDA(price0.9)) =FUNCTION(price, price0.9) 5 / 10 You want to apply Data Validation to cell A2 so that users can only enter a future date (a date strictly greater than today). Which custom formula should you put in the Data Validation rule? =ISFUTURE(A2) =FUTURE(A2) =A2>TODAY() =A2>NOW() 6 / 10 You are calculating an array formula =A2:A10 / B2:B10. Some cells in column B contain a zero, which will result in #DIV/0! errors. What is the most concise way to return the text "Error" instead of #DIV/0! for the affected rows while calculating the rest normally? =IFERROR(A2:A10 / B2:B10, "Error") =IF(B2:B10=0, "Error", A2:A10/B2:B10) =ISERROR(A2:A10 / B2:B10, "Error") Both A and B will work 7 / 10 You have a large dataset spanning from A1 to Z100. You want to extract and display only columns 2, 5, and 10 as a dynamic array. Which modern Excel function allows you to do this easily? =EXTRACT(A1:Z100, 2, 5, 10) =FILTER(A1:Z100, {2,5,10}) =CHOOSECOLS(A1:Z100, 2, 5, 10) =COLUMNS(A1:Z100, 2, 5, 10) 8 / 10 You have a table with Employee Names in rows (A2:A10) and Months in columns (B1:M1). You need a formula to find the sales figure for "John" in "March". Which formula performs this two-way lookup correctly? =VLOOKUP("John", A1:M10, HLOOKUP("March", A1:M1, 1, FALSE), FALSE) =MATCH(INDEX("John", A2:A10), INDEX("March", B1:M1)) =INDEX(B2:M10, MATCH("John", A2:A10, 0), MATCH("March", B1:M1, 0)) =XLOOKUP("John", "March", A1:M10) 9 / 10 You need to combine text strings from cells A2 to A10, separated by a comma and a space (", "), but you must completely ignore any blank cells in the range so you don't get extra commas. Which formula accomplishes this most efficiently? =CONCAT(A2:A10, ", ") =TEXTJOIN(", ", TRUE, A2:A10) =JOIN(", ", A2:A10) =TEXTJOIN(", ", FALSE, A2:A10) 10 / 10 You want to count how many employees in the range A2:A50 have a last name ending with the letters "son" (e.g., Johnson, Anderson). Which criteria string should you use inside your COUNTIF function? =COUNTIF(A2:A50, "son*") =COUNTIF(A2:A50, "?son") =COUNTIF(A2:A50, "~son") =COUNTIF(A2:A50, "*son") Your score is LinkedIn Facebook Twitter Retake quiz Exit