How to execute Editable_If ISBLANK([_THIS]) with a number column AFTER user press save?

I followed this article:

According to the article, if I use the expression ISBLANK([_THIS]) inside of the data isEditable? field, then once a user enters in a value and saves, the field becomes uneditable. However, Once you enter a number value, it instantly becomes uneditable without having to save. I would expect that the field would be editable until you press the save button as the article states.

Am I missing a command?



0 2 111
2 REPLIES 2

It sounds that you need the field to be editable till it is saved, meaning till the record is not added in the table.

If so please try the below in the editable_if of the column Estimated Time

NOT(IN([_ROWNUMBER], Main_Table[_ROWNUMBER]))

Please take a look at the wonderful tips post by @Steve on detecting a new row being added and a row already existing in the table.

Yes! That is what I need. I will try this out and I will read Steve’s tip.

Top Labels in this Space