Re,
C'est encore plus simple : remplacer par cette macro :
Sub test()
Dim i, ii, o As Range
For Each o In Selection
If o.Value <> "" Then
i = o.Value
o.Formula = i & Chr(10) & i
o.Characters(Start:=1, Length:=2).Font.Size = 24
o.Characters(Start:=3).Font.Size = 8
End If
Next
End Sub
A+