
Hi, I have the code below which is used to set the record to be patch (update) in the edit page which works perfectly fine for gallery under Onselect action.
Set(varSelected,ThisItem); Navigate(EditPage_1); Set(varexist, LookUp('[Test] Sharepoint List','Report ID'=varSelected.ReportId));
But now when I try to use it on the modern table, it prompted general error which I have no idea how to solve
Hi @MrKoh rather than using ThisItem you would want to do something like this:
Set(varSelected,YourModernTableName.Selected)
Here is my example for you:
My Modern Table Onselect property:
Then I have a label with this as it text property:
Hope this helps!
Please click Accept as solution if my post helped you solve your issue. ✔️ This will help others find the solution to this problem. It also closes the item. Remember, you can accept more than one post as a solution.
If the content was useful in other ways, please consider giving it Thumbs Up. 👍
Thanks
Andrew