Re : enlever le zero sur workbook
Salut flo
bonjour le fil
voila une macro qui peut peut être te servir lol
la plage est à définir
si présence de Zéros on vide si vide on mets Zéro lol
Sub testZero()
Dim tableau As Variant
Dim L As Integer
Dim C As Byte
tableau = Range("B4:F27").Value
For L = 1 To UBound(tableau, 1)
For C = 1 To UBound(tableau, 2)
Select Case tableau(L, C)
Case Is = "0"
tableau(L, C) = ""
Case Is = ""
tableau(L, C) = 0
Case Else
tableau(L, C) = tableau(L, C)
End Select
Next
Next
Application.ScreenUpdating = False
Cells(4, 2).Resize(UBound(tableau, 1), UBound(tableau, 2)) = tableau
Application.ScreenUpdating = True
End Sub