So I have the below code that will find the embedded excel object and will change the value of the cell indicated in .Range:
With ActivePresentation.Slides(2).Shapes(1).OLEFormat.Object
.Activate
.Worksheets(1).Cells(1, 1).Range("a1") = "won't work"
End With
I'm still having issues if I have cell AB400 displayed, I can't get it to move the screen display to cell A1. I've tried .Select, .SetFocus .Show and a few others but either nothing happens or I get an error.
for .Select I get the error: "Run-Time Error '1004' Select method of Range failed"
any suggestions are appreciated.
Bookmarks