Struggling with multiple dependent dropdown

I have a form with 2 dependent dropdowns, the first works fine, the second is dependent on the first

My first valid if is as follows:

IN( [_THIS], SORT(SELECT (Brand[Sauce], [_THISROW].[Brand] = [Brand])))

The user then selects the sauce, which should then display the content of the column โ€œCURRENTโ€ (i.e current recipe of said sauce)

IN( [_THIS], SORT(SELECT (Brand[Current],true, [_THISROW].[Sauce Name] = [Sauce])))

I tried to follow the tutorial regarding adding the โ€œTRUEโ€ statement but I guess I wrote it wrong.

0 4 151
4 REPLIES 4

Maybe

IN( [_THIS], SORT(SELECT (Brand[Current] , [_THISROW].[Sauce Name] = [Sauce]), TRUE))

Unfortunately whilst this does work in โ€œTESTโ€ when I save to the form and try it, it doesnt workโ€ฆ

Any advice?

I have a similar thing going on with a Make and Model selection for an automotive app I have.

Dropdown 1)
SELECT(MAKES[MAKE], TRUE)

Dropdown 2)
SELECT(MODELS[MODEL], [MAKE] = [_THISROW].[MAKE]).

Hopefully this doesnโ€™t give you a bum steer and can help steer you in the right direction.

Steve
Platinum 4
Platinum 4

For reference:

Top Labels in this Space