Complete the formula to import RSS feed from a URL.
=IMPORTFEED([1])The URL must be a text string inside quotes for IMPORTFEED to work correctly.
Complete the formula to import only the titles from the RSS feed.
=IMPORTFEED("https://example.com/feed", [1])
To get only the titles from the RSS feed, use the query "items title".
Fix the error in the formula to import the latest 5 items from the RSS feed.
=IMPORTFEED("https://example.com/feed", "items title", [1])
The third argument is the number of items to import and must be a number, not a text string.
Fill both blanks to import the RSS feed URL and get the item links.
=IMPORTFEED([1], [2])
The first blank is the RSS feed URL in quotes, the second blank is the query to get item links.
Fill all three blanks to import the RSS feed URL, get item descriptions, and limit to 3 items.
=IMPORTFEED([1], [2], [3])
The first blank is the feed URL, second is to get descriptions, third is the number 3 to limit items.