Hello Team
I am new to power apps but have been building a power apps application. I have a gallery filter by the people on my organization as me as Manager. In the gallery arrow pointing to the right, which I change to an edit Icon, I set up a variable which looks like this:
Set(
varEdituser,
ThisItem
);
Set(
varEdituser2,
ThisItem
);
Navigate(Form2)
Then the application navigates to my form and uses varEdituser to filter the edit form to the information of the employee selected. So far so good. My idea was to set up varEdituser2 as well to filter with the same idea, the information on the edit form 3, which is on a different screen. But when I use the same approach and set up the form Item property to varEdituser2, it does not accept the variable and produces an error. Any idea how can I approach this?