Sub RangeLesDonneesFlash()
Dim pas%, coldeb%, i&, lig&, col%, j&
pas = 7 'à adapter
coldeb = 2 'à adapter
With Feuil1.[A1].CurrentRegion
For i = 1 To .Rows.Count Step pas
lig = lig + 1
col = coldeb
For j = i + 1 To i + pas - 1
.Cells(lig, col) = Replace(Replace(.Cells(j, 1), "(", ""), ")", "")
col = col + 1
Next j, i
.Cells(lig + 1, coldeb).Resize(.Rows.Count - lig, pas - 1).ClearContents 'RAZ en dessous
End With
End Sub