How can I enable or show a hidden field ONLY if a user edits the existing record.
What I wanted to happen is that if ever they changed their mind and to wanted to edit the record they’ve submitted, i wanted to show the hidden field “Edit reason”, t hat way when they re-submit this form that they are editing, we would know why they edited it?.
Is this a new row?/Does this row already exist? Is this a new row? NOT(IN([_ROWNUMBER], My Table[_ROWNUMBER])) or: ISBLANK( FILTER( “My Table”, ([_ROWNUMBER] = [_THISROW].[_ROWNUMBER]) ) ) Does this row already exist? IN([_ROWNUMBER], My Table[_ROWNUMBER]) or: ISNOTBLANK( FILTER( “My Table”, ([_ROWNUMBER] = [_THISROW].[_ROWNUMBER]) ) ) In the above, replace My Table with the name of the table about which you’re inquiring. When modifying rows, such as in forms or wi…