Hello,
i have a canvas APP form which is connected to a list at SharePoint Online.
At "APP" at the "OnStart" i have: If(!IsBlank(Param("ID")),Set(varID, Param("ID"));Navigate(Screen,ScreenTransition.Fade))
and at the ITEM at the FORM i have: If(!IsBlank(Param("ID")),LookUp(Helpdesk,ID = varID))
the above is working fine and i want to place a butoon to call it EDIT and when i press it to launch to another site but with the same ID. Below is what i have tried unsuccessfully:
Launch(("https://mysite.com?ID=") & LookUp(Helpdesk,ID = varID))
thank you