Welcome to Windows Help!
FAQFAQ    SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

Excel linking a Table

 
   Windows Help (Home) -> Microsoft Powerpoint RSS
Next:  turn off white outline in Word Art text box  
Author Message
Amrit

External


Since: Feb 26, 2009
Posts: 4



(Msg. 1) Posted: Tue May 19, 2009 9:42 am
Post subject: Excel linking a Table
Archived from groups: microsoft>public>powerpoint (more info?)

Opening the linked table source:
- how do I remove the extra link info (e.g. "Book1.xslx!Sheet!R1C1:R5C2"

Updating the Source file name of a linked table in Powerpoint:
- how do i get the full path of the file?

thanks,
Amrit

 >> Stay informed about: Excel linking a Table 
Back to top
Login to vote
Steve Rindsberg

External


Since: Nov 8, 2008
Posts: 108



(Msg. 2) Posted: Tue May 19, 2009 2:33 pm
Post subject: Re: Excel linking a Table
Archived from groups: per prev. post (more info?)

In article , Amrit
wrote:
> Opening the linked table source:
> - how do I remove the extra link info (e.g. "Book1.xslx!Sheet!R1C1:R5C2"

What exactly do you want to remove, and from what?

> Updating the Source file name of a linked table in Powerpoint:
> - how do i get the full path of the file?

assuming a reference to the shape in oSh:

With oSh
Debug.Print .LinkFormat.SourceFullName
End With

==============================
PPT Frequently Asked Questions
[URL="http://www.pptfaq.com/"]http://www.pptfaq.com/[/URL]

PPTools add-ins for PowerPoint
[URL="http://www.pptools.com/"]http://www.pptools.com/[/URL]

 >> Stay informed about: Excel linking a Table 
Back to top
Login to vote
Amrit

External


Since: Feb 26, 2009
Posts: 4



(Msg. 3) Posted: Wed May 20, 2009 2:29 am
Post subject: Re: Excel linking a Table
Archived from groups: per prev. post (more info?)

Hi Steve,

Apologies for not providing enough information.

1) when linking an excel table, ie Copy cells in Excel and Paste Special,
Paste link, Microsoft Office Excel Worksheet Object:
The path of the linked table appears as :
C:\Documents and Settings\aparmar\Desktop\Book1.xslx!Sheet!R1C1:R5C2

I want to be able to Open the Source file and Select the cells. How do I do
this programmatically?

2) I want to be able to change the Source File of the linked table
(including selected cells) in the oSh.LinkFormat.SourceFullName.

e.g.
Current SourceFullName : C:\Documents and
Settings\aparmar\Desktop\Book1.xslx!Sheet!R1C1:R5C2

New filename: C:\Documents and Settings\aparmar\Desktop\Book2.xslx

I want the following, ie selecting the same cells as the original:
Updated Source : C:\Documents and
Settings\aparmar\Desktop\Book2.xslx!Sheet!R1C1:R5C2

Regards,
Amrit

"Steve Rindsberg" wrote:

> In article wrote:
> > Opening the linked table source:
> > - how do I remove the extra link info (e.g. "Book1.xslx!Sheet!R1C1:R5C2"
>
> What exactly do you want to remove, and from what?
>
> > Updating the Source file name of a linked table in Powerpoint:
> > - how do i get the full path of the file?
>
> assuming a reference to the shape in oSh:
>
> With oSh
> Debug.Print .LinkFormat.SourceFullName
> End With
>
> ==============================
> PPT Frequently Asked Questions
> [URL="http://www.pptfaq.com/"]http://www.pptfaq.com/[/URL]
>
> PPTools add-ins for PowerPoint
> [URL="http://www.pptools.com/"]http://www.pptools.com/[/URL]
>
>
 >> Stay informed about: Excel linking a Table 
Back to top
Login to vote
Steve Rindsberg

External


Since: Nov 8, 2008
Posts: 108



(Msg. 4) Posted: Wed May 20, 2009 11:13 am
Post subject: Re: Excel linking a Table
Archived from groups: per prev. post (more info?)

In article wrote:
> > > Opening the linked table source:
> > > - how do I remove the extra link info (e.g. "Book1.xslx!Sheet!R1C1:R5C2"
> >
> > What exactly do you want to remove, and from what?
> >
> > > Updating the Source file name of a linked table in Powerpoint:
> > > - how do i get the full path of the file?
> >
> > assuming a reference to the shape in oSh:
> >
> > With oSh
> > Debug.Print .LinkFormat.SourceFullName
> > End With
> >
> > ==============================
> > PPT Frequently Asked Questions
> > [URL="http://www.pptfaq.com/"]http://www.pptfaq.com/[/URL]
> >
> > PPTools add-ins for PowerPoint
> > [URL="http://www.pptools.com/"]http://www.pptools.com/[/URL]
> >
> >


==============================
PPT Frequently Asked Questions
[URL="http://www.pptfaq.com/"]http://www.pptfaq.com/[/URL]

PPTools add-ins for PowerPoint
[URL="http://www.pptools.com/"]http://www.pptools.com/[/URL]
 >> Stay informed about: Excel linking a Table 
Back to top
Login to vote
Amrit

External


Since: Feb 26, 2009
Posts: 4



(Msg. 5) Posted: Wed May 20, 2009 11:13 am
Post subject: Re: Excel linking a Table
Archived from groups: per prev. post (more info?)

1) how do i open an excel file, using the Linkformat.SourceFullName as:
C:\Documents and Settings\aparmar\Desktop\Book1.xslx!Sheet!R1C1:R5C2

- currently I'm stripping off the extra references (!Sheet!R1C1:R5C2), so I
can use (C:\Documents and Settings\aparmar\Desktop\Book1.xslx) to open in
Excel. I'm stripping it using a Split by String method with ".xslx!" being
the item I split against - so thought there must be a better way.

- now "!Sheet!R1C1:R5C2" shows the sheet and Row / Column reference of the
cells selected. Upon opening the Excel, is there a way to select the correct
Tab and Cells? Except for parsing "!Sheet!R1C1:R5C2" to extract the Sheet and
Cell references, is there another way?

2) Yes, I'm using Replace function, i thought there might be a better way.

thanks,
Amrit

"Steve Rindsberg" wrote:

> In article wrote:
> > > > Opening the linked table source:
> > > > - how do I remove the extra link info (e.g. "Book1.xslx!Sheet!R1C1:R5C2"
> > >
> > > What exactly do you want to remove, and from what?
> > >
> > > > Updating the Source file name of a linked table in Powerpoint:
> > > > - how do i get the full path of the file?
> > >
> > > assuming a reference to the shape in oSh:
> > >
> > > With oSh
> > > Debug.Print .LinkFormat.SourceFullName
> > > End With
> > >
> > > ==============================
> > > PPT Frequently Asked Questions
> > > [URL="http://www.pptfaq.com/"]http://www.pptfaq.com/[/URL]
> > >
> > > PPTools add-ins for PowerPoint
> > > [URL="http://www.pptools.com/"]http://www.pptools.com/[/URL]
> > >
> > >
>
>
> ==============================
> PPT Frequently Asked Questions
> [URL="http://www.pptfaq.com/"]http://www.pptfaq.com/[/URL]
>
> PPTools add-ins for PowerPoint
> [URL="http://www.pptools.com/"]http://www.pptools.com/[/URL]
>
>
 >> Stay informed about: Excel linking a Table 
Back to top
Login to vote
Steve Rindsberg

External


Since: Nov 8, 2008
Posts: 108



(Msg. 6) Posted: Wed May 20, 2009 3:51 pm
Post subject: Re: Excel linking a Table
Archived from groups: per prev. post (more info?)

In article wrote:
> > > > > Opening the linked table source:
> > > > > - how do I remove the extra link info (e.g. "Book1.xslx!Sheet!R1C1:R5C2"
> > > >
> > > > What exactly do you want to remove, and from what?
> > > >
> > > > > Updating the Source file name of a linked table in Powerpoint:
> > > > > - how do i get the full path of the file?
> > > >
> > > > assuming a reference to the shape in oSh:
> > > >
> > > > With oSh
> > > > Debug.Print .LinkFormat.SourceFullName
> > > > End With
> > > >
> > > > ==============================
> > > > PPT Frequently Asked Questions
> > > > [URL="http://www.pptfaq.com/"]http://www.pptfaq.com/[/URL]
> > > >
> > > > PPTools add-ins for PowerPoint
> > > > [URL="http://www.pptools.com/"]http://www.pptools.com/[/URL]
> > > >
> > > >
> >
> >
> > ==============================
> > PPT Frequently Asked Questions
> > [URL="http://www.pptfaq.com/"]http://www.pptfaq.com/[/URL]
> >
> > PPTools add-ins for PowerPoint
> > [URL="http://www.pptools.com/"]http://www.pptools.com/[/URL]
> >
> >


==============================
PPT Frequently Asked Questions
[URL="http://www.pptfaq.com/"]http://www.pptfaq.com/[/URL]

PPTools add-ins for PowerPoint
[URL="http://www.pptools.com/"]http://www.pptools.com/[/URL]
 >> Stay informed about: Excel linking a Table 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
Preserve format of linked excel table - Hello -- I would like to preserve the format of an excel table that is linked into a powerpoint file. How is this done?

vba excel to PPT: name excel shape into PPT template with .. - Hi, I've got a macro that copies a shape/chart created in excel and then pastes the shape into a powerpoint slide that already has a number of other shapes in it (a template PPT file). I've noticed that when the shape is pasted into the PPT slide, PP...

help feature and Importing from Excel/Word - I am brand new to 2007 applications, but am familiar with 2003. I cannot seem to locate where the help option is in ppt 2007 and I needed to look up how to import a table from an Excel file I have into my presentation. If someone could please get me...

Excel charts not showing in Powerpoint - A presentation was sent to me that was developed using Office 2007 but the file was saved in 2003 format (PPT). The presentation looks fine on a machine with Office 2007 but on a machine with Office 2003 some of the graphs and charts are missing and....

Updating Excel Link in PPT - Hey, I've got a PPT presentation that has Excel files linked into thre presentation (paste special; past link) but PPT isn't asking me to update links when i open it....so therefore my PPT has old Excel data...how do i get PPT to "refresh" a...
   Windows Help (Home) -> Microsoft Powerpoint All times are: Pacific Time (US & Canada)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You can edit your posts in this forum
You can delete your posts in this forum
You can vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]