Re,
Un nouvel essai.
Cdlt.
Sub XXX()
Dim rng As Range, N As Long
On Error Resume Next
Set rng = Worksheets("exemple").Range("C1:L9").SpecialCells(xlCellTypeBlanks)
On Error GoTo 0
If Not rng Is Nothing Then
With Worksheets("Feuil1")
N = .Cells(.Rows.Count, 2).End(xlUp).Row
If N = 1 Then
.Cells(1, 2).Value = rng.Address
Else
.Cells(N + 1, 2).Value = rng.Address
End If
End With
End If
End Sub