Hi,
I try to add a Blank entry to my Dropdown.
I have a SP List with a Personcolumn for Projectmanagers.
In Powerapps i have a Collection ->colProjektleiter that runs on Startup
ClearCollect(
colProjektleiter;
ShowColumns(
AddColumns(
Projektliste; "Email"; Projektleiter.Email);"Projektleiter")
)
on the Dropdown i have on Items a Distinct function so i only see 1 Entry of each Project Manager:
Distinct(
colProjektleiter;Projektleiter.Email)
Above the Dropdown i have a Textfield where the current User Email is shown.
Now my Gallery is filtered as followed:
If(
IsBlank(drpCurrentUserProjektdaten);
Filter(
[@Projektliste];
Projektleiter.Email = User().Email
);
Filter(
[@Projektliste];
Projektleiter.Email = drpCurrentUserProjektdaten.SelectedText.Value
)
)
So if the Dropdown is Blank, it takes the current User, if something is chosen in the Dropdown it takes that value.
This is so the Projectmanagers can on demand also Edit a Project from a Coworker.
This all works fine. the issue is, once something is chosen on the Dropdown, you cant go back to the Blank state.

I tried to use the default Value on the Dropdown to be User().Email
This works in the Browser but not when i run the App in Teams.
If it i could get it to work in Teams so the Dropdown always uses the Current User as Default, this would make it much easier.
Thank you for your help