How to read row value form grid using uipath forms?

Hi Team
We are using grid on UiPath forms which have 4 Row and 2 columns coming from an excel file .

Name Age
A 5
B 7
C 8

The ask here is when a user will select any row and
1.) Select row=2 , press button1 then we need to show a message box to user = User B Age 7 Button1 clicked
1.) Select row=3 ,press button2 then we need to show a message box to user = User C Age 8 Button2 clicked

Hi @srikanth.pasupuleti3 ,
Follow below steps:
1.Use Create form activity-check the properties of formfieldoutputdata this will gives output of json format
2.You can use Write text file activity.-Make sure that filename should be in . json format
3.Read Text file activity
4.Use Deseralize Json-Pass output variable of Read text file to input of JsonString,Argument type -Newtonsoft.json.Linq.jobject and Paas output value(Desvariable)-Package(UiPath.Web.Activities)
5.Use Assign-Stringtype(Yourvariable)=Desvariable(“KeyValue”).tostring

Hope this helps,

Hello, I leave you the following link, in which a YouTube video explains how you can show dynamic information in the fields.