Hello!
I'd like Flow to generate an email with a link to a record in my PowerApp using parameters. I believe my Flow is working correctly, but I'm having a hard time creating the parameter based on the ID of the record.
My record uses the variable VarCanvasData as my selected record.
I'd like my Parameter to be "canvasid" followed by the ID number. If there is a canvasid, go to the executive summary screen, otherwise go to the canvas dashboard (home screen)
OnStart:
Set(VarCanvasID, Value(Param("canvasid")));
If(VarCanvasID <> 0, Set(VarCanvasData, LookUp(Efforts, ID = VarCanvasID)); 'Executive Summary')
StartStreen:
If(
IsBlank(Param("canvasid")), 'Canvas Dashboard', 'Executive Summary')
If I add a label with the text as "VarCanvasID" it doesn't show anything, so I think I'm missing something to actually grab the ID from the selected record. My Flow seems to generate the URL as expected, but it doesn't actually populate data based on the record it should be displaying.
I hope this makes sense 🙂 Please let me know if there is any other information that would be helpful! Thank you!