Dropdown or Enum

I want to allocate a selection list daily basis for entering the form. is it possible

0 6 105
6 REPLIES 6

Daily basis meaning? If it is a monday, there a list, if it is a tuesday, thereโ€™s another list?

yes, Based on the availability i want to allocate this list

i have form for entering available doctors . is it possible to connect this list in selection table

IF(
WEEKDAY(TODAY()) = 1,

LIST(
โ€œDoctor 1โ€,
โ€œDoctor 2โ€
โ€ฆ
),

IF(
WEEKDAY(TODAY()) = 2,

LIST(
โ€œDoctor 3โ€,
โ€œDoctor 4โ€
โ€ฆ
),

LIST(โ€œโ€)

))

I think you have confused with my point. I have a separate form for attendance register daily basis. Is it possible to connect this to another forms dropdown list. (Daily basis)

Yes. If you want to connect two forms, Table 2 should reference a column in Table 1

Top Labels in this Space