Sub SupCol()
Rows(2).Replace 0, "", xlWhole
On Error Resume Next 'si aucune SpecialCell
Rows(2).SpecialCells(xlCellTypeBlanks).EntireColumn.Delete
End Sub
Je ne vous remercierai jamais assez, job75Bonsoir KTM,
Une solution VBA :
Bonne nuit.VB:Sub SupCol() Rows(2).Replace 0, "", xlWhole On Error Resume Next 'si aucune SpecialCell Rows(2).SpecialCells(xlCellTypeBlanks).EntireColumn.Delete End Sub