There are two common use cases for dynamic update modes:> > 1. To allow some users to make updates but restrict this functionality for others> 1. To allow updates for some rows but restrict updates for other rows
When I try to use the second feature, it raises error:
Table 'MyTable' has an invalid update mode expression '=SWITCH([Key], "", "ALL_CHANGES", "UPDATES_ONLY")'. Unable to find column 'Key'
The Are updates allowed? access controls apply to the table as a whole, not to each row individually; the expression is not evaluated in the context of any one row, so you cannot refer to column values directly. For instance, [Key] is a column value reference and cannot be used in the Are updates allowed? expression.
Row-level access controls must be managed either at the column level (Data >> Columns), or by action configuration (Behavior >> Actions), or both.