Hi.
I need to change a form from Edit to View once ThisItem.Status.value="Submit"
The idea is once a record has been formally submitted no one can make any changes.
Thanks
You would need to look at the status value of the Item in your form and set the mode based on that.
Look at your Item property and see how you are getting the record for the form.
So, let's say it is with a record variable - varRec
Then you would set the DefaultMode of the form to:
If(varRec.Status.Value="Submit", FormMode.View, FormMode.Edit)
I hope this is helpful for you.
WarrenBelz
146,620
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
65,962
Most Valuable Professional