Sub Worksheet_Activate()
Dim tablo, T, N%, i%, C%
[A5:F1000].ClearContents
Application.ScreenUpdating = False
tablo = [VM]
T = Array("*debian*", "*ubuntu*", "*centos*", "*suse linux*", "*vmware photon*", "*microsoft windows*")
For i = 1 To UBound(tablo)
C = 0
Serveur = LCase(tablo(i, 2))
For N = 0 To 5
If Serveur Like T(N) Then C = N + 1
Next N
If C > 0 Then
DL = 1 + Cells(10000, C).End(xlUp).Row
Cells(DL, C) = tablo(i, 1)
End If
Next i
End Sub