I am trying to create a VBA script that contain a certain text in French, it actually works well on my MacBook with the Lucida Grande font but since this font doesn't exist on windows the macro does not work in it and whenever I change the font to any one that could support French language it neither delete the characters or replace them with insignificant ones, a part of the code is below, please if some one have the answer i will be so grateful. thank you.
For i = 2 To LRow
' colonne E "."
index = WorksheetFunction.Match(".", Sheets("DATA_1").Range("1:1"), 0)
If Cells(i + 1, index).Value = "" Then
Cells(i + 1, index).EntireRow.Delete
End If
'colonne K "Quelle était votre situation professionnelle 6 mois après l'obtention de votre titre (mois de février) ? "
index = WorksheetFunction.Match("Quelle était votre situation professionnelle 6 mois après l'obtention de votre titre (mois de février) ?", Sheets("DATA_1").Range("1:1"), 0)
If Cells(i + 1, index).Value = "" Then
Cells(i + 1, index).EntireRow.Delete
End If