Bonjour,
j'ai un léger problème dans ma macro, et j'aimerais que quelqu'un puisse m'aider SVP.
la macro ce dessous permet d’afficher le contenue des cellule d'un fichier excel sur les slides d'un PowerPoint.
quand j'ajoute ce bout de code dans chaque slide qui permet d’afficher juste le contenu d'une cellule . ça me génère un erreur : la procédure est trop grande.
quelqu'un peut m'aider a régler ce problème SVP.
j'ai un léger problème dans ma macro, et j'aimerais que quelqu'un puisse m'aider SVP.
la macro ce dessous permet d’afficher le contenue des cellule d'un fichier excel sur les slides d'un PowerPoint.
VB:
Private Sub import()
'ce programme sert a ouvrir le powerpoint cartes support relais et mettre a jour les slide c'est a dire les commentaire ainsi ETAT des relais.
Dim pptapp As PowerPoint.Application
'Dim PptDoc As PowerPoint.Presentation
Dim sld As PowerPoint.Slide
Dim Shp As PowerPoint.Shape
'Dim Cs1 As ColorScheme
'Dim NbShpe As Integer
Set pptapp = CreateObject("Powerpoint.Application")
Dim presppt As PowerPoint.Presentation
Dim FichierPpt, pwpt
Set pwpt = CreateObject("PowerPoint.Application")
'pwpt.Visible = False
Set presppt = pptapp.Presentations.Open(Filename:="Y:\Pré-op\SOPP et relais\Relais\Situation Relais V2\cartes support relais.pptm")
'pwpt.Visible = True
pwpt.ActivePresentation.UpdateLinks
With presppt
'--- Ajoute un Slide
' .Slides.Add Index:=1, Layout:=ppLayoutBlank
'Crée une zone de texte (AddLabel)
' affectation à l'objet slide la première diapositive de la présentation en cours.
' création de la zone de texte
Set Shp = .Slides(2).Shapes.AddTextbox(msoTextOrientationHorizontal, 70, 320, 600, 50)
'insère la valeur de la Cellule E3 dans une zone de texte (Le commentaire)
If Range("E3") <> 0 Then Shp.TextFrame.TextRange.Text = Range("E3")
'Modifie la couleur du texte
Shp.TextFrame.TextRange.Font.Color = RGB(3, 34, 76)
'--------com1-SOMAIN
Set Shp = .Slides(2).Shapes.AddTextbox(msoTextOrientationHorizontal, 300, 240, 350, 50)
If Range("E53") <> 0 Then Shp.TextFrame.TextRange.Text = Range("E53")
Shp.TextFrame.TextRange.Font.Color = RGB(3, 34, 76)
'--------com2
Set Shp = .Slides(2).Shapes.AddTextbox(msoTextOrientationHorizontal, 300, 220, 350, 50)
If Range("E52") <> 0 Then Shp.TextFrame.TextRange.Text = Range("E52")
Shp.TextFrame.TextRange.Font.Color = RGB(3, 34, 76)
'--------com3
Set Shp = .Slides(2).Shapes.AddTextbox(msoTextOrientationHorizontal, 300, 200, 350, 50)
If Range("E51") <> 0 Then Shp.TextFrame.TextRange.Text = Range("E51")
Shp.TextFrame.TextRange.Font.Color = RGB(3, 34, 76)
'--------com4
Set Shp = .Slides(2).Shapes.AddTextbox(msoTextOrientationHorizontal, 300, 180, 350, 50)
If Range("E50") <> 0 Then Shp.TextFrame.TextRange.Text = Range("E50")
Shp.TextFrame.TextRange.Font.Color = RGB(3, 34, 76)
'--------com5
Set Shp = .Slides(2).Shapes.AddTextbox(msoTextOrientationHorizontal, 300, 160, 350, 50)
If Range("E49") <> 0 Then Shp.TextFrame.TextRange.Text = Range("E49")
Shp.TextFrame.TextRange.Font.Color = RGB(3, 34, 76)
'--------com6
Set Shp = .Slides(2).Shapes.AddTextbox(msoTextOrientationHorizontal, 300, 140, 350, 50)
If Range("E48") <> 0 Then Shp.TextFrame.TextRange.Text = Range("E48")
Shp.TextFrame.TextRange.Font.Color = RGB(3, 34, 76)
'-------Etat somain
Set Shp = .Slides(2).Shapes.AddTextbox(msoTextOrientationHorizontal, 300, 100, 350, 40)
If Range("D3") <> 0 Then Shp.TextFrame.TextRange.Text = Range("D3")
Shp.TextFrame.TextRange.Font.Color = RGB(3, 34, 76)
End With
'-------------------------------------------------------------------------------------------
With presppt
' création de la zone de texte
Set Shp = .Slides(3).Shapes.AddTextbox(msoTextOrientationHorizontal, 70, 320, 600, 50)
'insère la valeur de la Cellule E4 dans une zone de texte (Le commentaire)
If Range("E4") <> 0 Then Shp.TextFrame.TextRange.Text = Range("E4")
'Modifie la couleur du texte
Shp.TextFrame.TextRange.Font.Color = RGB(3, 34, 76)
'-------------Com1-CULMONT CHALANDRY
Set Shp = .Slides(3).Shapes.AddTextbox(msoTextOrientationHorizontal, 300, 240, 350, 50)
If Range("E61") <> 0 Then Shp.TextFrame.TextRange.Text = Range("E61")
Shp.TextFrame.TextRange.Font.Color = RGB(3, 34, 76)
'--------com2
Set Shp = .Slides(3).Shapes.AddTextbox(msoTextOrientationHorizontal, 300, 220, 350, 50)
If Range("E60") <> 0 Then Shp.TextFrame.TextRange.Text = Range("E60")
Shp.TextFrame.TextRange.Font.Color = RGB(3, 34, 76)
'--------com3
Set Shp = .Slides(3).Shapes.AddTextbox(msoTextOrientationHorizontal, 300, 200, 350, 50)
If Range("E59") <> 0 Then Shp.TextFrame.TextRange.Text = Range("E59")
Shp.TextFrame.TextRange.Font.Color = RGB(3, 34, 76)
'--------com4
Set Shp = .Slides(3).Shapes.AddTextbox(msoTextOrientationHorizontal, 300, 180, 350, 50)
If Range("E58") <> 0 Then Shp.TextFrame.TextRange.Text = Range("E58")
Shp.TextFrame.TextRange.Font.Color = RGB(3, 34, 76)
'--------com5
Set Shp = .Slides(3).Shapes.AddTextbox(msoTextOrientationHorizontal, 300, 160, 350, 50)
If Range("E57") <> 0 Then Shp.TextFrame.TextRange.Text = Range("E57")
Shp.TextFrame.TextRange.Font.Color = RGB(3, 34, 76)
'--------com6
Set Shp = .Slides(3).Shapes.AddTextbox(msoTextOrientationHorizontal, 300, 140, 350, 50)
If Range("E56") <> 0 Then Shp.TextFrame.TextRange.Text = Range("E56")
Shp.TextFrame.TextRange.Font.Color = RGB(3, 34, 76)
'-------Etat culmont
Set Shp = .Slides(3).Shapes.AddTextbox(msoTextOrientationHorizontal, 300, 100, 350, 40)
If Range("D4") <> 0 Then Shp.TextFrame.TextRange.Text = Range("D4")
Shp.TextFrame.TextRange.Font.Color = RGB(3, 34, 76)
End With
With presppt
' création de la zone de texte
Set Shp = .Slides(4).Shapes.AddTextbox(msoTextOrientationHorizontal, 70, 320, 600, 50)
'insère la valeur de la Cellule E5 dans une zone de texte (Le Commentaire)
If Range("E5") <> 0 Then Shp.TextFrame.TextRange.Text = Range("E5")
'Modifie la couleur du texte
Shp.TextFrame.TextRange.Font.Color = RGB(3, 34, 76)
'------------com1-HAUSBERGEN
Set Shp = .Slides(4).Shapes.AddTextbox(msoTextOrientationHorizontal, 300, 240, 350, 50)
If Range("E69") <> 0 Then Shp.TextFrame.TextRange.Text = Range("E69")
Shp.TextFrame.TextRange.Font.Color = RGB(3, 34, 76)
'--------com2
Set Shp = .Slides(4).Shapes.AddTextbox(msoTextOrientationHorizontal, 300, 220, 350, 50)
If Range("E68") <> 0 Then Shp.TextFrame.TextRange.Text = Range("E68")
Shp.TextFrame.TextRange.Font.Color = RGB(3, 34, 76)
'--------com3
Set Shp = .Slides(4).Shapes.AddTextbox(msoTextOrientationHorizontal, 300, 200, 350, 50)
If Range("E67") <> 0 Then Shp.TextFrame.TextRange.Text = Range("E67")
Shp.TextFrame.TextRange.Font.Color = RGB(3, 34, 76)
'--------com4
Set Shp = .Slides(4).Shapes.AddTextbox(msoTextOrientationHorizontal, 300, 180, 350, 50)
If Range("E66") <> 0 Then Shp.TextFrame.TextRange.Text = Range("E66")
Shp.TextFrame.TextRange.Font.Color = RGB(3, 34, 76)
'--------com5
Set Shp = .Slides(4).Shapes.AddTextbox(msoTextOrientationHorizontal, 300, 160, 350, 50)
If Range("E65") <> 0 Then Shp.TextFrame.TextRange.Text = Range("E65")
Shp.TextFrame.TextRange.Font.Color = RGB(3, 34, 76)
'--------com6
Set Shp = .Slides(4).Shapes.AddTextbox(msoTextOrientationHorizontal, 300, 140, 350, 50)
If Range("E64") <> 0 Then Shp.TextFrame.TextRange.Text = Range("E64")
Shp.TextFrame.TextRange.Font.Color = RGB(3, 34, 76)
'-------Etat hausbergen
Set Shp = .Slides(4).Shapes.AddTextbox(msoTextOrientationHorizontal, 300, 100, 350, 40)
If Range("D5") <> 0 Then Shp.TextFrame.TextRange.Text = Range("D5")
Shp.TextFrame.TextRange.Font.Color = RGB(3, 34, 76)
End With
presppt.Close
Set presppt = Nothing
pptapp.Quit
Set pptapp = Nothing
End Sub
quand j'ajoute ce bout de code dans chaque slide qui permet d’afficher juste le contenu d'une cellule . ça me génère un erreur : la procédure est trop grande.
VB:
'-------Etat hausbergen
Set Shp = .Slides(4).Shapes.AddTextbox(msoTextOrientationHorizontal, 300, 100, 350, 40)
If Range("D5") <> 0 Then Shp.TextFrame.TextRange.Text = Range("D5")
Shp.TextFrame.TextRange.Font.Color = RGB(3, 34, 76)
quelqu'un peut m'aider a régler ce problème SVP.