Sub testJJ()
Dim i As Long, x As Double
Application.ScreenUpdating = False
On Error Resume Next
Application.DisplayAlerts = False
Sheets("Resultat").Delete
Application.DisplayAlerts = True
On Error GoTo 0
Sheets("Feuille1").Copy After:=Sheets(1)
ActiveSheet.Name = "Resultat"
For i = Cells(1, Columns.Count).End(xlToLeft).Column To 1 Step -1
If Not IsNumeric(Mid(Cells(1, i), InStr(Cells(1, i), ":") + 1, Len(Cells(1, i)))) Then
Columns(Cells(1, i).Column).Delete
Else
x = Mid(Cells(1, i), InStr(Cells(1, i), ":") + 1, Len(Cells(1, i))) * 1
If Not Int(x) = x Or x = 0 Then
Columns(Cells(1, i).Column).Delete
End If
End If
Next
ActiveSheet.Shapes("Button 1").Cut
Application.ScreenUpdating = True
End Sub