Private Sub TxtCommuneFacturation_Change()
'TxtCpFacturation.Value = Application.WorksheetFunction.VLookup(TxtCommuneFacturation.Value, Workbooks("Source Communes.xlsm").Sheets("Feuil1").Range("List_Communes"), 2, 0)
'TxtCommuneFacturation.Value = Application.Proper(TxtCommuneFacturation.Value)
'Dim objPlageRecherche As Range
'Set objPlageRecherche = Workbooks("Source Communes.xlsm").Worksheets("Feuil1").Range("a2:b37000")
'TxtCpFacturation.Value = Application.WorksheetFunction.VLookup(TxtCommuneFacturation.Value, objPlageRecherche, 2)
With TxtCommuneFacturation
If .ListIndex > -1 Then TxtCpFacturation = .List(.ListIndex, 1)
End With
End Sub