Hello, thanks for looking.
I am following this tutorial at the minute https://youtu.be/m1MFJssXpxo and i would like to add a few cascading dropdowns.
In a normal form i have gotten this to work fine however when using a gallery im guessing things work a little different.
Currently i have 2 SP lists;
1 is my main list where inputted data is patched to (Main Data)
the other holds all the data for my dropdowns (Cascading list)
Following the above guide the gallery is linked to a collection which is why I thought it wasn't working, so I have created a new collection and loaded Cascading list into it, now I can get the first box to work great, the 2nd and 3rd not so much, below is the code I'm using:
Drp1: Distinct(DDData, Title)
Drp2: Distinct(Filter(DDData, Title = Drp_Title.Selected.Value), Feeder)
Drp3: Distinct(Filter(DDData, Title = Drp_Title.Selected.Value, Feeder = Drp_Feeder.Selected.Value), FSP)
Now if i change them to .Result i get an error saying it is not recognised, but on the dropdown list you can see 2 options but not the text
Has anyone got any suggestions for me to solve this?