Hello,
I would like to replace the character 'Â' with an empty space for all the values that belong to the column entitled 'Montant' of a form. Below is the code that I wrote but is not working. Any suggestions? Thank you for your help!
I would like to replace the character 'Â' with an empty space for all the values that belong to the column entitled 'Montant' of a form. Below is the code that I wrote but is not working. Any suggestions? Thank you for your help!
Code:
Private Sub Form_Open(Cancel As Integer) DoCmd.Maximize Dim a As String a = MONTANT Replace (MONTANT, "Â" , "") End Sub
Comment