Insert Row in Table Linked to PowerPoint

JohnathanVBA

New Member
Joined
Oct 2, 2014
Messages
42
Hello,

I'm having a problem with my linked tables in PowerPoint. Currently, I have a master excel file that contains a lot of tables on different sheets. The tables link perfectly fine to my PowerPoint file. However, when I try and add/delete a row in the master file, the linked table in PowerPoint ends up cutting off the table (when adding a row) or having a blank row (when deleting a row). See below for an example of the table.

Group#%
SP346.9
GG14423.8
PP122.1


I'm wondering if there's a solution other than re-establishing a new link in PowerPoint to my master excel file.

Thanks!
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
Hello

See if this example helps:

Code:
' Excel module
Sub Excel_PP()
Dim ppapp As PowerPoint.Application, pres As PowerPoint.Presentation, shp As PowerPoint.shape, s, rng As Range, s2$
On Error Resume Next
Set ppapp = GetObject(, "PowerPoint.Application")
If Err.Number <> 0 Then Set ppapp = CreateObject("PowerPoint.Application")
Err.Clear: On Error GoTo 0
ppapp.Visible = msoTrue
Set pres = ppapp.ActivePresentation
For Each shp In pres.Slides(2).Shapes
    If shp.Type = msoLinkedOLEObject Then
        Select Case InStr(shp.LinkFormat.SourceFullName, "L2C2") > 0    ' update table that starts at B2
            Case True
                s = Split(shp.LinkFormat.SourceFullName, "!")
                Set rng = Range("b2").CurrentRegion                     ' B2 is upper left corner
                s2 = "L" & rng.Rows(1).Row & "C" & rng.Columns(1).Column & _
                ":L" & rng.Rows(rng.Rows.Count).Row & "C" & rng.Columns(rng.Columns.Count).Column
                shp.LinkFormat.SourceFullName = s(0) & "!" & s(1) & "!" & s2
                shp.LinkFormat.Update
            Case False
                ' do nothing
        End Select
    End If
Next
End Sub
 
Upvote 0
This is an initial example that works on one table, as commented below:

• Paste it on any standard Excel module
• Change the slide number to the one containing the Excel table
• Change the LC reference for the table’s upper left corner. For example, cell E4 would be L4C5
• Change the range reference for the upper left corner, for example “e4”

After successfully testing this, we can expand it to all tables.

Code:
' Excel module (Module1,Module2,...)
Sub Excel_PP()
Dim ppapp As PowerPoint.Application, pres As PowerPoint.Presentation, shp As PowerPoint.Shape, s, rng As Range, s2$
On Error Resume Next
Set ppapp = GetObject(, "PowerPoint.Application")
If Err.Number <> 0 Then Set ppapp = CreateObject("PowerPoint.Application")
Err.Clear: On Error GoTo 0
ppapp.Visible = msoTrue
Set pres = ppapp.ActivePresentation
For Each shp In pres.Slides(5).Shapes                                   ' change slide number here
    If shp.Type = msoLinkedOLEObject Then
        Select Case InStr(shp.LinkFormat.SourceFullName, "L4C2") > 0    ' change table reference here
            Case True
                s = Split(shp.LinkFormat.SourceFullName, "!")
                Set rng = Range("b4").CurrentRegion                     ' change upper left corner here
                s2 = "L" & rng.Rows(1).Row & "C" & rng.Columns(1).Column & _
                ":L" & rng.Rows(rng.Rows.Count).Row & "C" & rng.Columns(rng.Columns.Count).Column
                shp.LinkFormat.SourceFullName = s(0) & "!" & s(1) & "!" & s2
                shp.LinkFormat.Update
            Case False
                ' do nothing
        End Select
    End If
Next
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,885
Messages
6,122,090
Members
449,065
Latest member
Danger_SF

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top