Re: Pass selected data in table to Text box
Hey @Skybluekid
There is no on select property for data table. So we would take help of variables here.
Take a button, and on select property of that button write a similar formula:
Set(selectedItem, DataTable.Selected)
Then take a text box and in that text box write the following formula:
If(IsEmpty(selectedItem), "", selectedItem.Title)
If nothing is selected the data table, it will show nothing and when you select a line in table it will show the title for it. You can replace it with PO Number.
I hope this helps 🙂