I am trying to assign a formula to a textbox so that it populates with the user's name when the checkbox is toggled and clears the box and updates the textbox with the new user when the checkbox is toggled by another user.
It works to a point but once the form is saved and the boolean is saved to the connected sharepoint list, the checkbox will not update.
This is the rule I am using for the checkbox:
blnStartDate=="Yes"
*blnStartDate is the column the boolean is saved to in Sharepoint
Formula attached to the text box:
If(EmailAnticipatedStartDate=="No", "", If(EmailAnticipatedStartDate&&isNullOrEmpty(tsUpdate Anticipated Start By), Current User (Display Name), tsUpdate Anticipated Start By))
*If the checkbox equals "No" then display nothing.