Is there a way to make a row editable if (condition)?

jamijr
New Member

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 Solved
0 3 736
1 ACCEPTED 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

View solution in original post

3 REPLIES 3
Top Labels in this Space