'---restitution---
Application.ScreenUpdating = False
With Feuil1 'CodeName à adapter
If .FilterMode Then .ShowAllData 'si la feuille est filtrée
lig = .UsedRange.Row + .UsedRange.Rows.Count
With .Cells(lig, 1).Resize(n)
.Value = b
.TextToColumns .Cells(1), xlDelimited, Tab:=True, DecimalSeparator:="." 'commande Convertir
End With
With .Rows(lig).Resize(, .UsedRange.Columns.Count)
.Interior.ColorIndex = 6 'jaune
.Font.Bold = True 'gras
Application.Goto .Cells(1), True 'cadrage
End With
.Columns.AutoFit
End With