Thank you for reaching out. Please find the answer below:
To make Branding Description default to TM Description:
- Table Fields
-
TM Description
– Short Text
-
BrandingDescription
– Short Text
- Form Setup
- Bind the BrandingDescription textbox to the field (no expressions).
- Add this VBA to the form’s module:
Private Sub Form_Current()
If Me.NewRecord Then
If Nz(Me.BrandingDescription, "") = "" Then
Me.BrandingDescription = Me.TM_Description
End If
End If
End Sub
Private Sub TM_Description_AfterUpdate()
If Nz(Me.BrandingDescription, "") = "" Then
Me.BrandingDescription = Me.TM_Description
End If
End Sub
Result:
- Auto-fills BrandingDescription from TM Description for new records.
- Users can freely edit BrandingDescription.
Let us know if the issue persists after following these steps. We’ll be happy to assist further if needed.