0
0
Excelspreadsheet~20 mins

Selecting data for charts in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Chart Data Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
1:30remaining
Output of a dynamic chart data range formula
Given the formula =OFFSET(A1,0,0,COUNTA(A:A),1) used as the data range for a chart, what is the height (number of rows) of the range if column A has values in cells A1 through A10?
A11
B9
C10
D0
Attempts:
2 left
💡 Hint
COUNTA counts all non-empty cells in the column.
Function Choice
intermediate
1:30remaining
Choosing the correct function to select chart data
Which Excel function is best to create a dynamic named range that automatically adjusts as you add more data in column B for a chart?
AINDEX
BSUM
CCOUNTA
DVLOOKUP
Attempts:
2 left
💡 Hint
Think about a function that can return a reference to a cell or range.
🎯 Scenario
advanced
2:00remaining
Selecting non-adjacent data for a chart
You want to create a chart using data from cells A1:A5 and C1:C5. Which method correctly selects these two non-adjacent ranges for the chart data source?
ASelect A1:C5 and insert the chart
BSelect A1:A5, then hold Ctrl and select C1:C5 before inserting the chart
CSelect A1:A5 only and insert the chart, then manually add C1:C5 later
DSelect C1:C5 only and insert the chart
Attempts:
2 left
💡 Hint
Think about how to select multiple ranges at once.
📊 Formula Result
advanced
1:30remaining
Result of INDIRECT function for chart data
If cell D1 contains the text Sheet1!$A$1:$A$10, what does the formula =SUM(INDIRECT(D1)) return assuming cells A1 to A10 in Sheet1 contain numbers 1 through 10?
A#REF! error
B10
C1
D55
Attempts:
2 left
💡 Hint
INDIRECT converts text to a range reference.
data_analysis
expert
2:00remaining
Analyzing chart data range after row insertion
You have a chart based on the range =Sheet1!$A$1:$B$5. If you insert a new row at row 3, what will be the new data range of the chart?
ASheet1!$A$1:$B$6
BSheet1!$A$1:$B$5
CSheet1!$A$1:$B$4
DSheet1!$A$2:$B$6
Attempts:
2 left
💡 Hint
Inserting rows shifts ranges down and expands them if relative references are used.