Hi,
I have a combo box, where I have in the items the following:
choices(PK_Antragx.ALT_Positionx)
That works fine and gives me a list of all professions. Now I want to filter it like this:
Filter(Choices(PK_Antragx.ALT_Positionx); Value="Assistent")
That has no error but gives an empty list.
I can do the following:
choices(PK_Antragx.ALT_Positionx; "Assistent")
But that does a search and only gives choices which match "Assistent" - my problem with it - I need heterogeanous values
I also can do this:
Search(Choices(PK_Antragx.ALT_Positionx); "Assistent"; "Value")
That works in opposite to filter as well, but the same issue as before - I don't need a search but a filter for certain items.
Is "Filter(Choices(..." not possible in power apps?