show some values in a column enum type

hi

What strategy can I use so that in a form view, an enum type column only shows some values, depending on the value entered in the previous column?

thanks

Solved Solved
0 3 115
1 ACCEPTED SOLUTION

Something like this?

SWITCH(
  [operations],
  "investments",
    {"ppi", "chu"},
  {"bna", "bbva", "ppi", "cash", "chu", ...}
)

View solution in original post

3 REPLIES 3

Steve
Platinum 5
Platinum 5

Use a Valid if expression to generate a list of the appropriate values.

See Drop-down from Valid_If

Hi Steve
Thank you for your response, but the examples do not fit my needs, I explain: I have the column [operations], with the values: income, payments, investments. The next column [source of funds], also enum type, has the following values: bna, bbva, ppi, cash, chu.... I wish that if the investments option is chosen, only the options are shown: ppi and chu

Something like this?

SWITCH(
  [operations],
  "investments",
    {"ppi", "chu"},
  {"bna", "bbva", "ppi", "cash", "chu", ...}
)
Top Labels in this Space