How to open PDF inside Excel

I have a pdf file inside a excel file and i need to open that file., And the position of pdf is also not fixedan anybody suggest me how to do thatCapture

1 Like

@yerriboyina_lokesh,

I have used Send Hotkey to open the Special Objects in a excel sheet, in your scenario I hope you will not have more than one PDF file in a sheet, so try with this workflow and let me know in case of any issues.

OpenEmbeddedObjFromExcel.xaml (15.5 KB)

Take excel application scope and invoke vba activity…in that vba code you can write like

sub main()
activesheet.shapes(“Object X”).select
selection.verb verb:=xlprimary
end sub()

note: in object X you can take your object number

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.