I see, but sat least it runs the macro without modifying or deleting any character: a part of the code ' supprimer les lignes vide
LRow = Range("A" & Rows.Count).End(xlUp).Row
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
I see, but sat least it runs the macro without modifying or deleting any character:
a part of the code
' supprimer les lignes vide
LRow = Range("A" & Rows.Count).End(xlUp).Row
For i = 2 To LRow