Challenge - 5 Problems
Data Import Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
What is the output of this formula importing data from a web source?
Given the formula
=WEBSERVICE("https://api.example.com/data") in cell A1, what will be the output if the URL returns the text "Success"?Excel
=WEBSERVICE("https://api.example.com/data")Attempts:
2 left
💡 Hint
The WEBSERVICE function returns the exact text response from the URL.
✗ Incorrect
The WEBSERVICE function fetches the content from the given URL and returns it as text. If the URL returns "Success", that exact text appears in the cell.
❓ Function Choice
intermediate2:00remaining
Which function imports data from another Excel workbook?
You want to get data from a different Excel file named
Data.xlsx. Which function will correctly import the value from cell B2 in that file?Attempts:
2 left
💡 Hint
Referencing external workbooks uses a specific syntax with square brackets and sheet names.
✗ Incorrect
To get a value from another workbook, use the syntax: ='[WorkbookName]SheetName'!CellReference. Option B correctly uses this.
🎯 Scenario
advanced3:00remaining
You want to import a CSV file into Excel and refresh it automatically. What is the best approach?
You have a CSV file that updates daily. You want Excel to import this file and refresh the data automatically when you open the workbook. Which method should you use?
Attempts:
2 left
💡 Hint
Excel's Get & Transform tools can automate importing and refreshing external data.
✗ Incorrect
Using Get Data from Text/CSV creates a query that can be set to refresh automatically, making it the best method for daily updated CSV files.
❓ data_analysis
advanced2:30remaining
Analyzing data imported from a web API in Excel
You imported JSON data from a web API using Power Query. The data contains a list of products with prices. How can you calculate the average price of all products inside Excel after loading the data?
Attempts:
2 left
💡 Hint
Once data is loaded into Excel as a table, normal Excel functions work on it.
✗ Incorrect
After importing data with Power Query, the data is in a table. You can use =AVERAGE(TableName[Price]) to get the average price easily.
🧠 Conceptual
expert2:00remaining
What error occurs when trying to import data from a non-existent external source?
You use the formula
=WEBSERVICE("https://invalid-url.example.com/data") to import data. What error will Excel show in the cell?Excel
=WEBSERVICE("https://invalid-url.example.com/data")Attempts:
2 left
💡 Hint
WEBSERVICE returns #VALUE! when it cannot get data from the URL.
✗ Incorrect
If the URL is invalid or unreachable, WEBSERVICE returns the #VALUE! error indicating it cannot retrieve data.