Hi @_sourcecod3_ ,
1)Could you tell me the data type of restaurant field?
I suggest you try Distinct function, which is used to display no-duplicate data.
If it is a text type, try to set the drop down's Items:
Distinct(tablename,restaurant field)
//please replace with your tablename, fieldname
2)Do you want to filter items in drop down 3 based on the selection of drop down 1 and drop down 2?
Could you tell me the data type of restaurant and location field?
I assume that they both are text type.
Then please set the drop down 3's Items:
Filter(tablename,restaurant field=drop down1.Selected.Result,location field=drop down2.Selected.Value)
Please note that :
1)the reason why I use drop down1.Seleccted.Result to represent the selection of drop down 1 is that Distinct function will return a column named Result.
2)if you set drop down2's Items to : tablename.location field name
I suggest you use drop down2.Selected.Value.
If you set drop down's Items to tablename, Value to location field name
I suggest you use down2.Selected.location field name
Best regards,