Help me. I am getting the error:
"No function signature for the function with name 'startswith' matches the specified arguments. The function signatures considered are: startswith(Edm.String Nullable=true, Edm.String Nullable=true). inner exception: No function signature No function signature for the function with name 'startswith' matches the specified arguments. The function signatures considered are: startswith(Edm.String Nullable=true, Edm.String Nullable=true).
I am trying to set the filter on the Items property in power apps: Filter(INVENTTABLE;Len(ITEMID)=7 And StartsWith(ITEMGROUPID;"1000") And StartsWith(ITEMID;Dropdown1.SelectedText.FabrikNummer))
I can see that if i change this part "Dropdown1.SelectedText.FabrikNummer" to a set number og text, then it works fine.
The Dropdown1 has Items property "ShowColumns('[dbo].[Fabrikker]';"FabrikNavn";"ID";"FabrikNummer")"
If i put a label and makes it equal to Dropdown1.SelectedText.FabrikNummer i get the number i am looking for.
I am basically trying to filter a combobox based on a list imput.