Dropdown or Enum

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

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)

Anchor_Appadmin:

Is it possible to connect this to another forms dropdown list.

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