Forum Discussion

mattgrif's avatar
mattgrif
Regular Visitor
6 years ago
Solved

Dynamically query multiple OData Feeds

I am trying to create a master view of all tasks assigned to multiple Microsoft Planner Plans in a single Group. This is possible using the Microsoft 365 Graph, but I want it to dynamically add addit...
  • lbendlin's avatar
    6 years ago

    you can create a function in M that takes the PlanId as a parameter and does the fetching.  or just concatenate the string.

     

    Table.AddColumn("x","y", each OData.Feed(urla & [PlanId] & urlb)  )

     

    etc.