'---------------------------------------
'Fonction qui rend l'acronyme d'un texte
'---------------------------------------
Function Acronyme(Cellule As Range) As String
Dim C As String, S As String
Dim i As Integer
Dim Bool As Boolean
S = CStr(Cellule.Value)
For i = 1 To Len(S)
C = Mid(S, i, 1)
'Ce test identifie toutes les lettres, accentuées ou pas !
If StrComp(Ucase(C), LCase(C), 0) <> 0 Then
If Not Bool Then Acronyme = Acronyme & Ucase(C) & "."
Bool = True
Else
Bool = False
End If
Next i
End Function