Is it possible to manually create a list in a...

Is it possible to manually create a list in a column e.g. A, B, C, D

then in a different table reference that list and be able to choose A or B or C or D via an ENUM?

Since you canโ€™t make the column of list type unless itโ€™s a virtual column.

Donโ€™t really want to have to create a table with one column for each possible variation.

When Iโ€™ve tried to do this the ENUM just give me one option - โ€œA, B, C, Dโ€

0 5 571
5 REPLIES 5

You could create a table to contain those Enum values. Call it, e.g., Enums, with three columns: Context (Text, required), Value (Text, required, label), and ID (Text, key, app formula =UNIQUEID()). Use Context to differentiate collections of values, and Value to define the values within a context. To use, reference in another columnโ€™s Valid_If: SORT(SELECT(Enums[Value], ([Context] = โ€œChoose A, B, C, or Dโ€))).

Not sure if that will work.

So its an App to record the dosages of medication that someone takes.

So you select Mediation A and it needs to give you the dosage options of 10mg, 20mg, 30mg.

Whereas if you choose Medication B it might give 10mg, 50mg or 100mg.

I thought Iโ€™d be able to the dosages into one column

Why donโ€™t you then use a dependent dropdown?

@Aleksi_Alkio

Wouldnโ€™t i need to each dosage to be on a different line for that to work?

Yes, you would need to have one row for each Mediation and dosage.

Top Labels in this Space