Hi,
I am working on my first PowerApp, I have never done anything like this before so I am trying to learn as I go along.
I am trying to pass details from a form onto the next page through variables. I already had this working, but I have had to revisit it and add another variable.
The OnSelect. of the form contains:
Set({selectedIssueNO : ThisItem.TicketKey, selectedSubject : ThisItem.Subject, selectedDescription : ThisItem.Description, selectedAssignedTo2 : ThisItem.AssignedTo}) ; UpdateContext({selColor : RGBA(255, 0, 0, 1)})
This was working at first, but now when I have tried to add another variable PowerApps is not picking up the new variable.
Set({ selectedIssueNo : ThisItem.TicketKey , selectedSubject : ThisItem.Subject , selectedDescription : ThisItem.Description , selectedAssignedTo : ThisItem.AssignedTo})
The last variable 'selectedAssignedTo' will not set, and I can't figure out why.
I have added a label on the same screen and set the text as 'selectedAssignedTo' but the variable is not appearing in the list, and coming back with a 'Name isn't valid' error.
Any help would be appreciated, I have been scratching my head over this for a while.