Hi All,
I have two PowerShell Apps, App1 and App2. After pressing the submit button on App1 it lunches to App2 with a parameter within the Url called Parm001.
Launch(Concatenate("https://apps.powerapps.com/play/4807...%201)?ID=123&Parm001=",TextInput1.Text)
App2 has a combo box with data from a SharePoint list column. The combo box item is set to:
Choices([@'External User Access Request Form'].Project_x0020_Site)
App2 also sets a variable called TestVar2 with the text from the parameter Parm001 within onStart.
Set(TestVar2,Param("Parm001"))
I have placed a label on App2 and set the text to TestVar2 to view the parameter text and this works OK.
My question is, how do I set the combo box on App2 so its default item is set to Parm001 value?
I have tried [Parm001] but when I press the submit button on App2 it doesn’t add this to the SharePoint list. I think this is because it changes the Combo box default text but doesn’t select the item in the combo list.
I hope this makes sense to you. At the beginning of the week, I had a full head of hair, I am now bald from the stress this is giving me.
I hope you can help. Thanks
Colin