Hi everyone,
First of all, I appreciate all the help you have given me so far. I would like to know if there is a way to program openings of a part of the application so that I don't have to spend every month editing it.
At the moment, I have restricted the use of access to a part of my App so that it can only be accessed on established dates. To do this, I used the following function:
If(
Date(
2022;
04;
09
) < Today();
Notify(
"No puede ingresar al formulario ya que pasó la fecha lÃmite.";
NotificationType.Error
);
Navigate(
Form_Inf_Tras;
Fade
)
)
I would like to know if there is a way for this action to be applied on the 4th of each month and be closed on the 9th of each month, so that I don't have to constantly modify the function each month.
Regards,
Emilio M.