0
0
Excelspreadsheet~20 mins

Excel on the web - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Excel on the web Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
Calculate total sales with mixed currency conversion

You have sales amounts in USD in column A and a conversion rate to EUR in cell B1. Which formula in cell B2 correctly calculates the total sales in EUR for the range A2:A5?

A=SUM(A2:A5)*B1
B=SUM(A2:A5)/B1
C=SUM(A2:A5+B1)
D=SUM(A2:A5*B1)
Attempts:
2 left
💡 Hint

Remember to sum the amounts first, then multiply by the conversion rate.

Function Choice
intermediate
2:00remaining
Choose the function to count non-empty cells

You want to count how many cells in the range C2:C10 contain any data (numbers or text). Which function should you use?

ACOUNTA(C2:C10)
BCOUNT(C2:C10)
CCOUNTBLANK(C2:C10)
DCOUNTIF(C2:C10, "<>")
Attempts:
2 left
💡 Hint

Think about which function counts all non-empty cells regardless of content type.

📊 Formula Result
advanced
2:00remaining
Find the output of a nested IF formula

Given cell A1 contains the value 75, what is the result of this formula?

=IF(A1>90, "Excellent", IF(A1>60, "Good", "Needs Improvement"))
A"Excellent"
B"Good"
C"Needs Improvement"
D0
Attempts:
2 left
💡 Hint

Check the conditions in order and see where 75 fits.

🎯 Scenario
advanced
2:00remaining
Identify the correct formula to extract the year from a date

You have a date in cell D3 (e.g., 2024-06-15). Which formula correctly extracts the year as a number?

A=MONTH(D3)
B=TEXT(D3, "YYYY")
C=DATEVALUE(D3)
D=YEAR(D3)
Attempts:
2 left
💡 Hint

Look for the function that returns the year part as a number.

data_analysis
expert
3:00remaining
Determine the number of unique values in a range

You want to find how many unique values are in the range E2:E20. Which formula will give the correct count of unique values in Excel on the web?

A=COUNT(E2:E20)
B=COUNTIF(E2:E20, UNIQUE(E2:E20))
C=COUNTA(UNIQUE(E2:E20))
D=SUMPRODUCT(1/COUNTIF(E2:E20, E2:E20))
Attempts:
2 left
💡 Hint

Use the UNIQUE function combined with a counting function.