I want to put a formula where if the conditions are not met, it becomes editable so that the user writes the answer. I put the following example: I would like to put in the EDITABLE part
IFS(
(WEEKDAY(TODAY()) = 1), "Sunday",
(WEEKDAY(TODAY()) = 2), "Monday",
(WEEKDAY(TODAY()) = 3), "Tuesday",
(WEEKDAY(TODAY()) = 4), "Wednesday",
(WEEKDAY(TODAY()) = 5), "Thursday",
(WEEKDAY(TODAY()) = 6), "Friday",
TRUE, EDITABLE,
)