Challenge - 5 Problems
RSS Feed Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
What does this IMPORTFEED formula return?
Given the formula
=IMPORTFEED("https://news.google.com/news/rss") in a Google Sheets cell, what is the expected output?Google Sheets
=IMPORTFEED("https://news.google.com/news/rss")Attempts:
2 left
💡 Hint
IMPORTFEED fetches and parses RSS or Atom feeds into a table format.
✗ Incorrect
IMPORTFEED downloads the RSS feed and extracts structured data like titles, links, and dates into separate columns.
❓ Function Choice
intermediate1:30remaining
Which IMPORTFEED parameter limits the number of items fetched?
You want to fetch only the latest 5 items from an RSS feed using IMPORTFEED. Which parameter should you use?
Attempts:
2 left
💡 Hint
Check the IMPORTFEED syntax: IMPORTFEED(url, query, num_items, headers)
✗ Incorrect
The third parameter
num_items controls how many feed items to return.📊 Formula Result
advanced1:30remaining
What error occurs with a wrong URL in IMPORTFEED?
What happens if you use
=IMPORTFEED("https://invalid-url.com/feed") in Google Sheets?Google Sheets
=IMPORTFEED("https://invalid-url.com/feed")Attempts:
2 left
💡 Hint
IMPORTFEED needs a valid URL to fetch data.
✗ Incorrect
If the URL is invalid or unreachable, IMPORTFEED returns a #N/A error with a fetch message.
🎯 Scenario
advanced2:00remaining
How to extract only titles from an RSS feed using IMPORTFEED?
You want to list only the titles of items from an RSS feed in a single column. Which formula achieves this?
Attempts:
2 left
💡 Hint
IMPORTFEED returns a table; use INDEX to select the first column (titles).
✗ Incorrect
IMPORTFEED returns multiple columns; INDEX with 0 for rows and 1 for column extracts the title column.
❓ data_analysis
expert2:00remaining
How many items are returned by this IMPORTFEED formula?
Given the formula
=IMPORTFEED("https://news.google.com/news/rss", "", 3, TRUE), how many rows of feed items will appear (excluding headers)?Google Sheets
=IMPORTFEED("https://news.google.com/news/rss", "", 3, TRUE)
Attempts:
2 left
💡 Hint
The fourth parameter TRUE includes headers as the first row.
✗ Incorrect
With headers TRUE, the sheet shows 1 header row plus the number of items requested (3).