Hi @Isley
I am sure you had clicked on Advanced to Unlock.
So, to create a Dropdown list, always use
- Distinct(DataSource, FieldTitle)
- Distinct(DS, Regelsoort)
Note: It is NOT really clear and explained in the Syntax, but it is clearly explained in the Example.
You will see Two (2) RED ! showing error. No worry.
Click on each of them, replace the existing DataCardValue with Dropdown ONLY (for .X and .Y..this is for error comments box)
and Update = with Dropdown.Selected.Value
Syntax
Distinct( Table, Formula )
- Table - Required. Table to evaluate across.
- Formula - Required. Formula to evaluate for each record.
Example
If you had an Employees table that contained a Department column, this function would list each unique department name in that column, no matter how many times each name appeared in that column:
Distinct(Employees, Department)
Hope this helps.