Ouverture extension multiple en VBA
Résolu/Fermé
juer31
Messages postés
109
Date d'inscription
mercredi 16 décembre 2015
Statut
Membre
Dernière intervention
4 octobre 2024
-
20 janv. 2016 à 21:25
juer31 Messages postés 109 Date d'inscription mercredi 16 décembre 2015 Statut Membre Dernière intervention 4 octobre 2024 - 22 janv. 2016 à 14:01
juer31 Messages postés 109 Date d'inscription mercredi 16 décembre 2015 Statut Membre Dernière intervention 4 octobre 2024 - 22 janv. 2016 à 14:01
A voir également:
- Vba allowmultiselect
- Mkdir vba ✓ - Forum VB / VBA
- Vba récupérer valeur cellule ✓ - Forum VB / VBA
- Excel compter cellule couleur sans vba - Guide
- Vba range avec variable ✓ - Forum VB / VBA
- Autofill vba ✓ - Forum Excel
2 réponses
Bonjour
voila une macro pour pour ouvrir un fichier XLS*
A+
Maurice
voila une macro pour pour ouvrir un fichier XLS*
Sub ListeFichier() Dim Dossier As FileDialog Chemin = ActiveWorkbook.Path & Application.PathSeparator Set Dossier = Application.FileDialog(msoFileDialogOpen) With Dossier .AllowMultiSelect = False .InitialFileName = Chemin .Title = "Choix d'une fichier" With .Filters .Clear .Add "Fichiers XLS*", "*.xls*", 1 End With .InitialFileName = "" 'Interdit la multi sélection .AllowMultiSelect = False If .Show = -1 Then Fichier = .SelectedItems(1) ' Call LireFichier(Fichier) Else Exit Sub End If End With Set Dossier = Nothing End Sub
A+
Maurice
juer31
Messages postés
109
Date d'inscription
mercredi 16 décembre 2015
Statut
Membre
Dernière intervention
4 octobre 2024
6
22 janv. 2016 à 14:01
22 janv. 2016 à 14:01
Merci
Il y a t'il un solution pour pouvoir ouvrir soit xlsx s'il ne trouve pas xls
Il y a t'il un solution pour pouvoir ouvrir soit xlsx s'il ne trouve pas xls