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! Go to Solution.
Something like this?
SWITCH(
[operations],
"investments",
{"ppi", "chu"},
{"bna", "bbva", "ppi", "cash", "chu", ...}
)
Use a Valid if expression to generate a list of the appropriate values.
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", ...}
)
User | Count |
---|---|
18 | |
11 | |
7 | |
5 | |
5 |