0
0
Google Sheetsspreadsheet~20 mins

IMPORTFEED for RSS in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
RSS Feed Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2: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")
AA blank cell with no data
BA table with columns like Title, URL, Date, and Content from the RSS feed
COnly the raw XML code of the RSS feed as plain text in one cell
DAn error saying 'Function not found' because IMPORTFEED is not valid
Attempts:
2 left
💡 Hint
IMPORTFEED fetches and parses RSS or Atom feeds into a table format.
Function Choice
intermediate
1: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?
AThe fourth parameter, <code>headers</code>, set to 5
BThe second parameter, <code>query</code>, set to 5
CThe third parameter, <code>num_items</code>, set to 5
DIMPORTFEED does not support limiting items
Attempts:
2 left
💡 Hint
Check the IMPORTFEED syntax: IMPORTFEED(url, query, num_items, headers)
📊 Formula Result
advanced
1: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")
ANo error, but returns old cached data
BReturns an empty table with no rows
CDisplays the raw HTML of the invalid page
D#N/A error with message 'Could not fetch URL'
Attempts:
2 left
💡 Hint
IMPORTFEED needs a valid URL to fetch data.
🎯 Scenario
advanced
2: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?
A=INDEX(IMPORTFEED("https://news.google.com/news/rss"), 0, 1)
B=IMPORTFEED("https://news.google.com/news/rss", "items title")
C=FILTER(IMPORTFEED("https://news.google.com/news/rss"), COLUMN()=1)
D=IMPORTFEED("https://news.google.com/news/rss", "title")
Attempts:
2 left
💡 Hint
IMPORTFEED returns a table; use INDEX to select the first column (titles).
data_analysis
expert
2: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)
A3 rows of feed items plus 1 header row
B3 rows total including header
C4 rows of feed items plus 1 header row
DOnly 1 row with all 3 items concatenated
Attempts:
2 left
💡 Hint
The fourth parameter TRUE includes headers as the first row.