• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Update Chart in Power Point Slide show

Abhijeet

Active Member
Hi

I want to update Chart automatically in PPT Slide Show.

My excel file is open in 1 system & PPT slide show open in another System so please tell me how to update PPT slide show when excel file update the data
 
After you copy your Excel chart, go into Powerpoint and on the Home tab, click Paste Special, then click the Paste Link radio button, and finally Microsoft Excel Chart Object.
 
Are the files open in different systems simultaneously while the presentation is happening? That might require a Powerpoint macro bound to a keystroke to update the linked object after the Excel file is saved on the other system. Hopefully one of the ninjas can jump in: I'm not good with vba.

Good luck!
 
yes from different system we update the data but i tried share the excel file then change the data from which system PPT slide On for that system excel files show changed data status but PPT slide wont update

Also i found this code which refresh slides

But still its not work so please give me idea how to do this
Code:
Sub RefreshSlide()

        Dim lSlideIndex As Long

        lSlideIndex = SlideShowWindows(1).View.CurrentShowPosition

        SlideShowWindows(1).View.GotoSlide lSlideIndex

        End Sub
 
Back
Top