Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
May I know how can we generate excel and save in the Shared path of the drive. for the Qlikview Dashboard
Thanks
L K Vepuri
Hi Lakshman,
Please refer below link for many sample macro scripts
Hope this helps you.
Regards,
jagan.
By using Macro code we can do thaT.
Can I have the sample macro..
yah sure.
Try this:
Sub SendToExcel
set obj = ActiveDocument.GetSheetObject("Report7")
x = Now()
x = Replace(x,"/","-")
x = Replace(x,":","-")
FileName="C:\a.xls"
''FileName = "C:\\A" & Rnd & "-" & x & ".xls"
obj.ExportBiff FileName
Set objexcel=GetObject("Excel.Application.")
objExcel.Visible=True
objExcel.Workbooks.Open "C:\a.xls"
End Sub
Try with NPrinting that will the best way to manage this , macro has performance issues
Hi Lakshman,
Please refer below link for many sample macro scripts
Hope this helps you.
Regards,
jagan.