Hello everyone,
I have stumbled upon yet another thing I do not know in PowerApp, and thus, am here asking if anyone of you could help me.
My problem now is that in screen 1 "project list" I have a list of all the projects an user has items on:

From that one, I select one and I will want for my browse screen to show it with "project 2" as the one selected, for example. The problem is I do not know how to link that the selected value there will show as the one I see on the browse screen.

So here instead of seeing all the items of "project1" and the dropdown list have selected "project1", I would want to have it selected on "project2". Due to the way the droplist and gallery are coded:
- Droplist:
Distinct(Filter(demo_project;User().Email in ShowColumns(Encargado;"Email"));TÃtulo)
- Gallery:
SortByColumns(Filter(demo_project; TÃtulo = ListaProyectos.Selected.Value && User().Email in ShowColumns(Encargado;"Email"));"Fecha_x0020_Termino";If(SortDescending1;Descending;Ascending))
What should I do sothe selected option in the first screenshot is used as an "input" so to speak, in the Gallery, so it shows the items belonging to that one? The droplist would also have selected that option, and the user would still be able to navigate options from it.
Thanks in advance,