Good evening everyone,
I have an Input Date Box next to "Fecha" and a Text Box next to "Semana".
If I select a date, I'd like that Text Box to be completed by a text I want. What formula should I insert?
Thanks
Jose
Solved! Go to Solution.
Switch(
Text(Input_Fecha.SelectedDate);
"10/02/2020";"SEMANA 3 10/02-16/02";
"11/02/2020";"SEMANA 3 10/02-16/02";
"11/02/2020";"SEMANA 3 10/02-16/02";
"No Date Selected "
)
There was a bracket missing near "...Date". Thanks by the way, it works now.
Hi @PowerAddict
I refer that if I select a date, I want to save that text box with something I want. If I select another date, that text box shows another thing and successively.
I want the text to change every time the date is changed and the text is different, so I think I need to put a lot of "If" formulas