Filter Enum choices in sequence

Hi is there a way to remove Enum choices that are previous possibilities. For example if I have Enum values A,B,C,D,E and the current value of a column is C the only available Enum values in the drop down should only be D,E. Is that possible? It has to do with processing of beer batches for example I donโ€™t want the user to be able to set a batch to โ€œfermentingโ€ status when it has in fact already been filtered and almost ready to package.

0 1 358
1 REPLY 1

Yes you can do that with the Suggested values. One way is for example with SWITCH statement likeโ€ฆ SWITCH([STATUS],
โ€œBโ€,LIST(B,C,D,E),
โ€œCโ€,LIST(C,D,E)
โ€ฆ
LIST(A,B,C,D,E)
)

Top Labels in this Space