1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Option Explicit
Option Compare Text
Sub traiter()
Dim i&, fin&, a
With Feuil1 ' à adapter si ta feuille à traiter s'appelle autrement
fin = .Range("A" & Rows.Count).End(xlUp).Row
For i = fin To 2 Step -1
For Each a In Array("(", ")", "&", "+", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "mairie", "départ", "municipa", "direct", "biblio", "gymnas", "famill", "fédération", "police", "gendarmerie", "association", "aide", "boucherie", "cinéma", "communaut", "commu", "cercle", "animation", "bureau", "club", "hô", "région", "centre", "comit", "complexe", "conseil", "menui", "HLM", "Union", "CFDT", "collectif", "Clinique", "cabinet", "docteur", "groupement", "atelier", "décheterie", "amicale", "franch", "football", "etabli", "pompier", "café", "restaurant", "agent", "ecole", "foyer", "publ", "autom", "studio", "entr", "ets", "meub", "cantine", "lycée", "univ", "publi", "entreprise", "Aumônerie", "etablissement", "assistance", "assur", "sport", "gare", "banque", "poste", "piscine", "salle", "service", "société", "soc", "agence", "immob", "santé", "travaux", "garderie", "crèche", "ferme", "centrale","caisse", "eurl", "gaec", "bijouterie", "gestion", "comptoi", "garage", "adhérant", "adhérent", "chômage", "franc
e", "belg", "interna", "telecom", "cabine", "info", "auto", "moto", "concess", "agt", "securit", "jeux", "auchan", "casino", "carrefour", "geant", "magasin", "march", "fleuriste", "radio", "camping", "eglise", "route", "transport", "ambulance", "sud", "taxi", "pompe", "française", "concierg", "rouge", "earl", "sarl", "groupe", "academie", "accor", "diffusion", "distributeur", "aéro", "distr", "canton", "chambre", "syndic", "parti", "coif", "commerce", "comm", "Déchetterie", "intercomm", "local", "point", "pharm", "auberge", "scea", "social", "edf", "gdf", "espace", "agri", "labo", "coop", "cultur", "scol", "cave", "maison", "agro", "emploi", "indust", "cyber", "group", "pizza", "imprim", "profess", "mutuell", "format", "insti", "Allo", "refuge", "avenir", "national", "compagnie", "office", "tourism", "médic", "vacanc", "village", "sncf", "distrib", "station", "coop", "musé", "musiq", "parc", "zoo", "abat", "vété", "inspec", "ADMR", "action", "")
If InStr(.Cells(i, 1), a) > 0 Then Rows(i).Delete shift:=xlUp: Exit For
Next a
Next i
End With
End Sub |
Partager