How do I create a pulldown selector on a form?

Moura
New Member

Hi guys, I’m trying to create a pulldown with a list pre-defined options on a form, how do I create it?

Thanks!

0 3 166
  • UX
3 REPLIES 3

Provided you will read those pre-defined values from a table, you can use below expression in your column’s Valid_If property:

SELECT(
    TableName[ColumnName],
    TRUE,
    TRUE
)

Steve
Platinum 4
Platinum 4


Thanks guys!

Top Labels in this Space