Hey All,
I am having great difficulty creating cascading dropdown menus based on tables with lookup fields in the Common Data Service. Here is the basic table structure:
Table1
Level1 - Datatype = Text
Table 2
Level2 - Datatype = Text
Level1 - Datatype = Lookup (get data from Table1, Level1)
I want two dropdown menus. The first should get data from Table1, field Level1. The second should filter the results of Table2 so that only Level2's that have a Level1 equal to the selected Level1 are shown.
I would've thought something like Filter(Table2, Table2.Level1 = Table1.Level1) would've sufficed, but nothing I try along those lines returns anything but errors.
Cheers 🙂
Joel