Hello!
I’d like to know if I can make an entire record be editable only if a certain condition is true. For example: I want my users to be able to add records and be able to edit them up to 7 days after adding.
I know I can do that in a per-column way. Is there any way to do this for the whole row?
Solved! Go to Solution.
No need for the slice. Just enter an expression for the Only if this condition is true property of System Edit action for that particular table:
TODAY() - [Date] <= 7
or
[Date] + 7 <= TODAY()
or
[Date] <= TODAY() - 7
User | Count |
---|---|
33 | |
11 | |
3 | |
2 | |
2 |