A voir également:
- [VB] Probleme de format de date sous excel
- Format epub - Guide
- Format factory - Télécharger - Conversion & Codecs
- Liste déroulante excel - Guide
- Hp usb disk storage format tool - Télécharger - Stockage
- Format apfs - Guide
3 réponses
Je l'ouvre avec ce code ci sachant que nom est le nom du fichier à ouvrir:
' Ouverture du fichier temporaire
Path = ActiveWorkbook.Path & "\Fiche\"
Workbooks.OpenText Filename:=Path & Nom, Origin:=xlWindows, _
StartRow:=1, DataType:=xlDelimited, TextQualifier:=xlDoubleQuote, _
ConsecutiveDelimiter:=False, Tab:=True, Semicolon:=False, Comma:=False _
, Space:=False, Other:=False, FieldInfo:=Array(1, 1)
' Ouverture du fichier temporaire
Path = ActiveWorkbook.Path & "\Fiche\"
Workbooks.OpenText Filename:=Path & Nom, Origin:=xlWindows, _
StartRow:=1, DataType:=xlDelimited, TextQualifier:=xlDoubleQuote, _
ConsecutiveDelimiter:=False, Tab:=True, Semicolon:=False, Comma:=False _
, Space:=False, Other:=False, FieldInfo:=Array(1, 1)
Le probleme est résolu il suffisait de taper ceci comme code si sa interesse des gens:
' Ouverture du fichier temporaire
Path = ActiveWorkbook.Path & "\Fiche\"
Workbooks.OpenText Filename:=Path & Nom, Origin:=xlWindows, _
StartRow:=1, DataType:=xlDelimited, TextQualifier:=xlDoubleQuote, _
ConsecutiveDelimiter:=False, Tab:=True, Semicolon:=False, Comma:=False _
, Space:=False, Other:=False, FieldInfo:=Array(Array(1, 1), Array(2, 4))
' Ouverture du fichier temporaire
Path = ActiveWorkbook.Path & "\Fiche\"
Workbooks.OpenText Filename:=Path & Nom, Origin:=xlWindows, _
StartRow:=1, DataType:=xlDelimited, TextQualifier:=xlDoubleQuote, _
ConsecutiveDelimiter:=False, Tab:=True, Semicolon:=False, Comma:=False _
, Space:=False, Other:=False, FieldInfo:=Array(Array(1, 1), Array(2, 4))