Domino Code Fragment

Code Name*
This formula puts the name of the current weekday in the column, except that Saturdays and Sundays are treated as Fridays.
Date*
04/28/2024
Source (or email address if you prefer)*
Rlatulippe@romac.com
IP address:.3.139.104.214
Description*
This formula puts the name of the current weekday in the column, except that Saturdays and Sundays are treated as Fridays.
Type*
Formula
Categories*
(Misc)
Implementation:
Required Client:
Server:
Limitations:
Comments:
Files/Graphics attachments (if applicable): Code:
T := @Weekday(@Now);
@If(T = 2; "Monday"; T = 3; "Tuesday"; T = 4; "Wednesday"; T = 5; "Thursday"; "Friday")