Ungroup A Table Stored In A Cell [object, Object]
Ungroup A Table Stored In A Cell [object, Object] Input collection: myMeetingRooms47 Info value This is a list of meeting rooms [object Object], [object Obje...
- Published
- Reading time
- 1 min read
Before you start
Is this guide for you?
- Best entry point
- Power Apps
- Time investment
- 1 min read
Imported reference from Matthew Devaney's blog for learning purposes. Original: https://www.matthewdevaney.com/powerapps-collections-cookbook/ungroup-a-table-stored-in-a-cell-object-object/. Author: Matthew Devaney.
Ungroup A Table Stored In A Cell [object, Object] Input collection: myMeetingRooms47 Info value This is a list of meeting rooms [object Object], [object Object]…
Note: [object Object], [object Object]… refers to a table stored in a cell. This is how PowerApps displays a table as text. Output collection: mySolution47 NickName People Building Redwood 10 Building A Oak 25 Building A Pinetree 8 Building B Cedar 15 Building B Solution code: //Create a collection
ClearCollect( myTable47, { NickName : "Redwood" , People : 10 , Building : "Building A" }, { NickName : "Oak" , People : 25 , Building : "Building A" }, { NickName : "Pinetree" , People : 8 , Building : "Building B" }, { NickName : "Cedar" , People : 15 , Building : "Building B" } );
ClearCollect(myMeetingRooms47, { info : "This is a list of meeting rooms" , value : myTable47}); //Get a table stored in a cell code
ClearCollect(mySolution47,Ungroup(myMeetingRooms47, "value" )); Code language: JavaScript ( javascript )
Tagged
Power Apps
Have a Microsoft 365 topic idea?
Share article suggestions, community session ideas, corrections, or real-world scenarios for future nextM365 learning notes.
Keep learning Microsoft 365
Explore more practical guides for SharePoint, Power Platform, Copilot Studio, migration, automation, governance, and security.
Continue learning
Related tutorials
Related questions
Related comparisons
Next action