Search code examples
xmlrsspowerapps

Is there a way to show specific items from RSS feed in Power apps?


I have a RSS feed with some categories. The list is long, so in Power Apps, I would like to only show certain items that have category = "X" instead of showing the whole list.

RSS.ListFeedItems("URL HERE") works for all items, but how can I show a part or a targeted list? Is that even possible?


Solution

  • Never worked with RSS, but let’s say you have a feed with a field of Categories:

    Filter(
      RSS.listFeedItems( YourUrl ),
      “YourCategoryAsText” in Categories
    )
    

    Maybe this gets you started?

    Edit: small change