Time Frame

Hi I would like to know if I can make something editable only in a certain time frame.

Thanks

Solved Solved
0 3 446
1 ACCEPTED SOLUTION

Do the following:

  1. Open the Data > Tables pane
  2. Select the table
  3. Following โ€œAre updates allowed?โ€ click the flask to open the expression editor.
  4. Enter an expression the compares NOW() to the times you wish to allow edits.
    Something like

SWITCH(AND(NOW() >= โ€œ08:00:00โ€, NOW() <= โ€œ17:00:00โ€),
โ€œALL_CHANGESโ€,โ€œREAD_ONLYโ€,

View solution in original post

3 REPLIES 3

@Laboratorio_DEYA
Yes you can do that

Do the following:

  1. Open the Data > Tables pane
  2. Select the table
  3. Following โ€œAre updates allowed?โ€ click the flask to open the expression editor.
  4. Enter an expression the compares NOW() to the times you wish to allow edits.
    Something like

SWITCH(AND(NOW() >= โ€œ08:00:00โ€, NOW() <= โ€œ17:00:00โ€),
โ€œALL_CHANGESโ€,โ€œREAD_ONLYโ€,

Thank that worked great XD

Top Labels in this Space