Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim BoApp As busobj.Application, BODoc As busobj.Document, BORep As busobj.Report
Set BoApp = CreateObject("BusinessObjects.application")
With BoApp
.LoginAs "userid", "password"
.Visible = True
.Documents.Open ("Full\File\Path\And\Name.rep")
With .ActiveDocument
.Refresh
i = 1
For Each rpt In .Reports
rpt.Activate
BoApp.CmdBars(2).Controls("&Edit").Controls(20).Execute
Sheets(i).Range("A1").PasteSpecial Paste:=xlPasteValues
i = i + 1
Next
End With
End With
Set BoApp = Nothing
Set BODoc = Nothing