Pulling from a Sharepoint that is setup with subfolders (not setup by me).
'Component' column in Sharepoint db is a single choice selection.
Dropdown1 Items: Distinct(Filter('OEM','Folder path' = Dropdown21.Selected.Result).'Component','Component').Result
I can use the Filter function and it does populate the dropdown with the correct numbers of options but they are all blank. If I setup a Label to display the item selected in Dropdown1, the result it displays in the Label for whatever i select in the dropdown. I can select the any of the blank 'data' and it displays the text in the label but they are blank in the dropdown. Tried combobox too and the same.
One workaround I did for another part was to setup a data table and 'Concat' the columns that wouldn't display that were both single choice selection and multi choice selection in the Sharepoint db.
The Choices function would more ideal, but can't get it to filter based on a folder path as all the subfolders contain the same column name.
Parent is: Manu
2 subfolder: BWM and MB
In the BWM, column 'Series' data is
S
C
SL
B
In BMW, column 'Series' data is
1
3
4
5
So if I use the Choices(Manu.Series) it displays all the data in the 'Series' column for both BWM and MB. I just want it to display BWM or MB (depending on the user selection of DropdownManu)
DropdownManu item: Filter(Manu, isfolder = true).Title