In form's OnSuccess propterty, I'm able to capture the values from textbox fields but not a checkbox field. Below is my code.
CheckBox: " &Form.LastSubmit.'CheckBox' & "<br/><br/> TextBox: " &Form.LastSubmit.'Last Name of Customer'
&Form.LastSubmit.'CheckBox' throws a formula error. I've tried &Form.LastSubmit.'CheckBox'.Selected.Value. This fixes the formula error but when the email is sent, the field is blank.
How should I capture check box values in an email from the form's OnSuccess property?