Forum Discussion
JustinTorrence1
7 years agoQrew Member
Lee,
Could something like this work?
You could create a formula checkbox called IsEditable, and then create a custom rule for editing where this checkbox must be checked.
If(
[Time Card Date] <= Today(),
If(
Now() > ToTimestamp(FirstDayOfWeek([Time Card Date]) + Days(8), ToTimeOfDay("11:00")), false,
true
),
true
)
"FirstDayOfWeek([Time Card Date]) + Days(8)" should return the Monday that follows every "time card"
Could something like this work?
You could create a formula checkbox called IsEditable, and then create a custom rule for editing where this checkbox must be checked.
If(
[Time Card Date] <= Today(),
If(
Now() > ToTimestamp(FirstDayOfWeek([Time Card Date]) + Days(8), ToTimeOfDay("11:00")), false,
true
),
true
)
"FirstDayOfWeek([Time Card Date]) + Days(8)" should return the Monday that follows every "time card"