Bonjour,
A l'aide d'une macro c'est faisable... Mais sans fichier....
Sub mamacro()
Dim i As Long, x As Integer, y As Integer
x = 1: y = 1
For i = 1 To Range("B" & Rows.Count).End(xlUp).Row
If y = 27 Then x = x + 1: y = 1
Range("A" & i).Value = Chr(64 + y) & x
y = y + 1
Next
End Sub
A+ François