Bonjour,
Comment peut-on distinguer le nom du prénom ? séparés par un espace ? toujours 2 mots ? toujours un seul prénom ?
si toujours 2 mots, un proposition
Sub aargh()
With Sheets("sheet1") ' <- à adapter
dl = .Cells(Rows.Count, 1).End(xlUp).Row
For i = 1 To dl
Set r = .Cells(i, 1)
s = InStr(r, " ")
If s > 0 Then
s = s - 1
r.Characters(Start:=1, Length:=s).Font.FontStyle = "Bold"
End If
Next i
End With
End Sub