Retrieve single record from data grid

0
I need to retrieve single row from data grid and need to reflect that in another entity . how can I achieve this? My booking page needs the data which is selected by user from list of all packages available. I need to retrieve that single row which is selected into another entity. Help me with this.
asked
1 answers
0

When you double-click on the data grid, in the properties you can indicate Selection mode being Single selection, this will ensure that you select only one and not many rows. Then you can add an action button on this data grid, and make it call a microflow. The selected row data will be passed to the microflow, where you can assign this data to another entity using the Change object activity. 

answered