Hi @Anonymous ,
Could you please share a bit more about the column value you want to display within your Dropdown control?
Could you please show more details about the data structure of your SP list?
I agree with @iAm_ManCat 's thought almost, I also have made a test on my side, please take a try with the following workaround:
Set the OnStart property of the App or OnVisible property of the first screen of your app to following:
ClearCollect(
DropdownCollection;
Maengelarten.ColumnName; /* <-- ColumnName represents the Column in your SP list, which you want to use as the display value within the Dropdown control (which you want to add static values to) */
{ColumnName: "StaticValue1"};
{ColumnName: "StaticValue2"};
{ColumnName: "staticValue3"};
...
)
Set the OnChange property of the ddGewerk Dropdown control to following:
ClearCollect(
DropdownCollection;
Filter(Maengelarten; CsGewerkTitle = ddGewerk.Selected.Value).ColumnName; /* <-- ColumnName represents the Column in your SP list, which you want to use as the display value within the Dropdown control*/
{ColumnName: "StaticValue1"};
{ColumnName: "StaticValue2"};
{ColumnName: "staticValue3"};
...
)
Or
ClearCollect(
DropdownCollection;
Filter(Maengelarten; CsGewerkTitle = ddGewerk.Selected.Value); /* <-- ColumnName represents the Column in your SP list, which you want to use as the display value within the Dropdown control*/
{ColumnName: "StaticValue1"};
{ColumnName: "StaticValue2"};
{ColumnName: "staticValue3"};
...
)
Set the Items property of the Dropdown control that you want to add static values to as below:
DropdownCollection
The user @AccessPowerApps has faced similar issue with you, please check the response within the following thread:
https://powerusers.microsoft.com/t5/General-Discussion/Need-Dropdown-with-blank-null-default/td-p/58172
Best regards,