Hi,
How to get the staring date time of week using the current now() function in Appian?
Example suppose Wed 14-05-2025, I want to get the date of starting of week i.e Monday 12-05-2025.
Thanks
Bihitak
Discussion posts and replies are publicly visible
You can do it something like that:a!localVariables( local!today: todate(local(now())), todate( a!subtractDateTime( startDateTime: local!today, years: 0, months: 0, days: weekday(local!today, 3) ) ))