Accueil > Forum > > > > Erreur d'execution '1004' mais sur Excel 2007
Erreur d'execution '1004' mais sur Excel 2007
mardi 18 décembre 2007 à 10:44:20 |
Erreur d'execution '1004' mais sur Excel 2007

kgadhi
|
Bonjour tous le monde et merci d'avance pour votre aide, J'ai développé une macro qui permet de mettre à jour un fichier excel depuis un autre fichier. Je travaille sous excel 2003. Aprés plusieurs tentatives, la macro marche. Apres j'ai voulu afficher le fichier sous excel 2007 et la j'ai l'erreur suivante : Erreur d'execution '1004' : Excel ne parvient pas à insérer les feuilles dans le classeur de destination car il contient moins de lignes et de colonnes que le classeur source. Pour déplacer ou copier les données vers le classeur de destination, vous pouvez les selectionner, puis utiliser les commandes Copier et Coller pour les insérer dans les feuilles d'un autre classeur.
Je vous mets aussi le code source <code source> ' Récuperer le nom du rep courant nomRepCourant = ThisWorkbook.Path longueur = Len(nomRepCourant) If longueur > 0 Then pos = InStr(nomRepCourant, "\") ' MsgBox nomRepCourant & " " & pos If (pos <> 0) Then trouve = True While trouve longueur = Len(nomRepCourant) nomRepCourant = Right(nomRepCourant, longueur - pos) pos = InStr(nomRepCourant, "\") ' MsgBox "rep1 : " & nomRepCourant & " " & pos If (pos = 0) Then trouve = False End If Wend End If End If ' MsgBox "Fichier: " & nomRepCourant ' Le nom du fichier Fichier = nomRepCourant & ".txt" nomFichier = nomRepCourant CheminFichier = CheminFichier & "\" & Fichier ' MsgBox "Fichier: " & CheminFichier NbEntrAjout = 0 NbEntrSupp = 0 Application.ScreenUpdating = False If Dir(CheminFichier) <> "" Then ' Ouvrir et lire le fichier Workbooks.OpenText Filename:=CheminFichier, Origin:= _ xlMSDOS, StartRow:=1, DataType:=xlDelimited, TextQualifier:=xlDoubleQuote _ , ConsecutiveDelimiter:=False, Tab:=True, Semicolon:=True, Comma:=False _ , Space:=False, Other:=False, FieldInfo:=Array(Array(1, 1), Array(2, 1), _ Array(3, 1), Array(4, 1), Array(5, 1), Array(6, 1), Array(7, 1), Array(8, 1), Array(9, 1), _ Array(10, 1)), TrailingMinusNumbers:=True Sheets(nomFichier).Select ' MsgBox "fichier : " & nomFichier Sheets(nomFichier).Move After:=Workbooks("SUIVI DES VISIT¦'ENTREPRISE.xls").Sheets(1) L'erreur est à cette ligne ' Compter le nombre de lignes recupérées Open CheminFichier For Input As #1 While Not EOF(1) Line Input #1, Texte NbLignes = NbLignes + 1 Wend Close #1 Lignes = 0 ' Verifier l'existance de la feuille modPortefeuille If FeuilleExiste(ThisWorkbook, "modPortefeuille") Then ' La feuille existe donc on la vide Sheets("modPortefeuille").Select ActiveSheet.Shapes.SelectAll Selection.Delete ActiveSheet.Cells.Clear Else ' On ajoute la feuille Sheets.Add ActiveSheet.Name = "modPortefeuille" Sheets("modPortefeuille").Select Sheets("modPortefeuille").Move Before:=Sheets(4) End If Range("C3:F3").Select With Selection .HorizontalAlignment = xlCenter .VerticalAlignment = xlBottom .WrapText = False .Orientation = 0 .AddIndent = False .IndentLevel = 0 .ShrinkToFit = False .ReadingOrder = xlContext .MergeCells = False End With Selection.Merge ActiveCell.FormulaR1C1 = "Les entreprises ajoutées" Range("J3:M3").Select With Selection .HorizontalAlignment = xlCenter .VerticalAlignment = xlBottom .WrapText = False .Orientation = 0 .AddIndent = False .IndentLevel = 0 .ShrinkToFit = False .ReadingOrder = xlContext .MergeCells = False End With Selection.Merge ActiveCell.FormulaR1C1 = "Les entreprises supprimées" Sheets("Suivi des visites entreprise").Select Range("B4:G4").Select Selection.Copy Sheets("modPortefeuille").Select Range("B4").Select ActiveSheet.Paste Range("I4").Select ActiveSheet.Paste Range("C3:F3").Select Application.CutCopyMode = False Selection.Borders(xlDiagonalDown).LineStyle = xlNone Selection.Borders(xlDiagonalUp).LineStyle = xlNone With Selection.Borders(xlEdgeLeft) .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = xlAutomatic End With With Selection.Borders(xlEdgeTop) .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = xlAutomatic End With With Selection.Borders(xlEdgeBottom) .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = xlAutomatic End With With Selection.Borders(xlEdgeRight) .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = xlAutomatic End With Selection.Borders(xlInsideVertical).LineStyle = xlNone Range("J3:M3").Select Application.CutCopyMode = False Selection.Borders(xlDiagonalDown).LineStyle = xlNone Selection.Borders(xlDiagonalUp).LineStyle = xlNone With Selection.Borders(xlEdgeLeft) .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = xlAutomatic End With With Selection.Borders(xlEdgeTop) .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = xlAutomatic End With With Selection.Borders(xlEdgeBottom) .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = xlAutomatic End With With Selection.Borders(xlEdgeRight) .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = xlAutomatic End With Selection.Borders(xlInsideVertical).LineStyle = xlNone Range("B5").Select Sheets(nomFichier).Select ' MsgBox "nbrelignes : " & NbLignes For i = 1 To NbLignes + 1 DoEvents RefAMI = Cells(i, 1).Value ' MsgBox "i : " & i & " , RefAmi : " & RefAMI If Cells(i, 9).Value = "" Then 'Ajout de la ligne Sheets("Suivi des visites entreprise").Select ' Verifier que le Ref Ami n'existe pas deja dans la liste TrouveRef = False For j = 1 To ActiveSheet.UsedRange.Rows.Count + 1 If Cells(j, 2).Value = RefAMI Then TrouveRef = True End If Next j ' Ajouter la ligne If TrouveRef = False Then Sheets(nomFichier).Select Lignes = Lignes + 1 Range(Cells(i, 1), Cells(i, 8)).Select Selection.Copy Sheets("Suivi des visites entreprise").Select Range("B65536").End(xlUp).Offset(1, 0).PasteSpecial ' Cadrer Selection.Borders(xlDiagonalDown).LineStyle = xlNone Selection.Borders(xlDiagonalUp).LineStyle = xlNone With Selection.Borders(xlEdgeLeft) .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = xlAutomatic End With With Selection.Borders(xlEdgeTop) .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = xlAutomatic End With With Selection.Borders(xlEdgeBottom) .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = xlAutomatic End With With Selection.Borders(xlEdgeRight) .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = xlAutomatic End With With Selection.Borders(xlInsideVertical) .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = xlAutomatic End With End If NbEntrAjout = NbEntrAjout + 1 Sheets(nomFichier).Select Range(Cells(i, 1), Cells(i, 6)).Select Selection.Copy Sheets("modPortefeuille").Select Range(Cells(NbEntrAjout + 4, 2), Cells(NbEntrAjout + 4, 2)).Select ActiveSheet.Paste ' Cadrer Selection.Borders(xlDiagonalDown).LineStyle = xlNone Selection.Borders(xlDiagonalUp).LineStyle = xlNone With Selection.Borders(xlEdgeLeft) .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = xlAutomatic End With With Selection.Borders(xlEdgeTop) .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = xlAutomatic End With With Selection.Borders(xlEdgeBottom) .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = xlAutomatic End With With Selection.Borders(xlEdgeRight) .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = xlAutomatic End With With Selection.Borders(xlInsideVertical) .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = xlAutomatic End With Sheets(nomFichier).Select Else ' Suppression de la ligne Sheets("Suivi des visites entreprise").Select For j = 1 To ActiveSheet.UsedRange.Rows.Count If Cells(j, 2).Value = RefAMI Then Cells(j, 1).EntireRow.Delete 'Range(Trim(Str(ActiveCell.Row)) & ":" & Trim(Str(ActiveCell.Row))).Select 'Selection.Delete Shift:=xlUp End If Next j NoLgnFin = ActiveSheet.UsedRange.Rows.Count ' MsgBox "Nb de ligne du fichier modPortefeuilleMed.txt : " & NoLgnFin NbEntrSupp = NbEntrSupp + 1 Sheets(nomFichier).Select Range(Cells(i, 1), Cells(i, 6)).Select Selection.Copy Sheets("modPortefeuille").Select Range(Cells(NbEntrSupp + 4, 9), Cells(NbEntrSupp + 4, 9)).Select ActiveSheet.Paste ' Cadrer Selection.Borders(xlDiagonalDown).LineStyle = xlNone Selection.Borders(xlDiagonalUp).LineStyle = xlNone With Selection.Borders(xlEdgeLeft) .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = xlAutomatic End With With Selection.Borders(xlEdgeTop) .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = xlAutomatic End With With Selection.Borders(xlEdgeBottom) .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = xlAutomatic End With With Selection.Borders(xlEdgeRight) .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = xlAutomatic End With With Selection.Borders(xlInsideVertical) .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = xlAutomatic End With Sheets(nomFichier).Select End If Next i 'Sheets("modPortefeuilleMed").Select 'ActiveSheet.Shapes.SelectAll 'Selection.Delete 'ActiveSheet.Cells.Clear Application.CutCopyMode = False Application.DisplayAlerts = False ActiveWindow.SelectedSheets.Delete Application.DisplayAlerts = True ' MsgBox "Nb de ligne: " & Lignes 'Range("B5").CurrentRegion.Rows(Range("B5").CurrentRegion.Rows.Count).Copy 'Range("B65536").End(xlUp).Offset(1, 0).PasteSpecial 'Selection.ClearContents End If ' Sheets("Suivi des visites entreprise").Select Sheets("modPortefeuille").Select Application.ScreenUpdating = True
End Sub
</code source> Et le probleme c'est que sous excel 2003 ça marche tres bien. Je suis débutant en vba.
|
|
mardi 18 décembre 2007 à 11:18:34 |
Re : Erreur d'execution '1004' mais sur Excel 2007

MPi
|
Comme le message te l'indique, pourquoi ne pas utiliser le copier/coller plutôt que Move ?
Est-ce que les 2 classeurs ont le même nombre de lignes et de colonnes ? Je pense que la version 2007 a beaucoup plus de colonnes et de lignes que les versions précédentes. Il y donc peut-être conflit entre tes 2 classeurs à ce niveau (?)
MPi²
|
|
Cette discussion est classée dans : end, selection, with, borders, linestyle
Répondre à ce message
Livres en rapport
|
Derniers Blogs
TECHDAYS PARIS 2010 : SHAREPOINT 2010 POUR LES DéVELOPPEURSTECHDAYS PARIS 2010 : SHAREPOINT 2010 POUR LES DéVELOPPEURS par ROMELARD Fabrice
Animé par: Laurent Cotton Le développement dans SharePoint 2010 passe par plusieurs axes qui seront évoqués dans cette session, mais plus particulièrement les développements simples lié au besoin Business Business Connectivity Services Ce BCS es...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice TECHDAYS PARIS 2010 : PLEINIèRE DERNIER JOURTECHDAYS PARIS 2010 : PLEINIèRE DERNIER JOUR par ROMELARD Fabrice
Cette session est la dernière pleinière de ces 3 jours de TechDays Paris 2010. Généralement, cette troisième journée est plus axée sur l'avenir vu par Microsoft. Après un retour sur l'avenir vu par la Science Fiction ou par ...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice UNE JOLIE-HORLOGE ET PAS QU'UN PEU !UNE JOLIE-HORLOGE ET PAS QU'UN PEU ! par neodante
Pour les possesseurs d'iPhone, ça y est Bijin Tokei - qui se traduit littéralement en Français par " Jolie Horloge " - est arrivé et GRATUITEMENT s'il vous plaît ! Après la version Tokyo, Hokkaido, night club, racing, Gal, "pour les mademoiselles'", . voi...
Cliquez pour lire la suite de l'article par neodante TECHDAYS PARIS 2010 : CONNECTEZ VOS DONNéES à SHAREPOINT 2010 AVEC LES BUSINESS CONNECTIVITY SERVICESTECHDAYS PARIS 2010 : CONNECTEZ VOS DONNéES à SHAREPOINT 2010 AVEC LES BUSINESS CONNECTIVITY SERVICES par ROMELARD Fabrice
Animé par: Gaetan Bouveret et Julien Chomarat Business Connectivity Services (BCS) est dans SharePoint 2010 la version 2 de Business Data Catalog (BDC dans SharePoint 2007). Il s'agit de la solution permettant de visualiser des données provenan...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice [DIVERS] SUIVRE VOS SéRIES PRéFéRéS SUR LA TOILE[DIVERS] SUIVRE VOS SéRIES PRéFéRéS SUR LA TOILE par orion
Comme de nombreux geek, je suis un grand amateur de série TV et je rate régulièrement des épisodes de mes séries préférés. Une solution s'offre à vous avec ce merveilleux site : Tv Gorge - www.tvgorge.com Moteur de recherche à l'appui, vous pouvez ...
Cliquez pour lire la suite de l'article par orion
Forum
TAILLETAILLE par nounuo74
Cliquez pour lire la suite par nounuo74
Logiciels
DB-MAIN (9.1.0)DB-MAIN (9.1.0)DB-MAIN is a data-modeling and data-architecture tool. It is designed to help developers and anal... Cliquez pour télécharger DB-MAIN Xilisoft DPG Convertisseur (5.1.37.0120)XILISOFT DPG CONVERTISSEUR (5.1.37.0120)Xilisoft DPG Convertisseur offre aux fans de Nintendo DS une bonne solution leur permettant de dé... Cliquez pour télécharger Xilisoft DPG Convertisseur GraphicsGale (2.01.01)GRAPHICSGALE (2.01.01)GraphicsGale est un logiciel de PixelArt avec de nombreuse fonctionnalités permettant de réalisé ... Cliquez pour télécharger GraphicsGale Architecte 3D (Platinum 2010)ARCHITECTE 3D (PLATINUM 2010)Architecte 3D Platinium vous permet de concevoir facilement les plans votre future maison, de l'é... Cliquez pour télécharger Architecte 3D TeamViewer 5 (TeamViewer 5)TEAMVIEWER 5 (TEAMVIEWER 5)Dépanner un ami,expliquer une manipulation devient un jeu d'enfant.
Prise en main d'un autre ord... Cliquez pour télécharger TeamViewer 5
|