Hi guys,
Suppose i have 10 fields in a form. User submits 7 of them and leaves 3 to complete that later on.
So, when he edits it, previously filled 7 fields cant be edited and blank ones can be edited.
How to performa this. > pls let me know guys
Hi guys,
Suppose i have 10 fields in a form. User submits 7 of them and leaves 3 to complete that later on.
So, when he edits it, previously filled 7 fields cant be edited and blank ones can be edited.
How to performa this. > pls let me know guys
Questions like this should be posted in the AppSheet Q&A board, where they’re more likely to be seen by someone who can provide an answer and won’t confuse anyone subscribed to this Tips & Tricks board for the type of content it’s intended for. I suggested to moderators that they move the post.
Regarding your question, enter an expression in each column’s Editable property that returns true if the row’s key does not exist in the table or the column is blank for the row:
OR(NOT(IN([_THISROW], Table[Key Column])), ISBLANK([_THIS]))