Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, I have a macro that save a straight table in .qvd file:
sub SendToQVD()
set vPath=ActiveDocument.Variables("CL.QVDPath")
path=vPath.GetContent.String
set obj = ActiveDocument.GetSheetObject("CH49")
obj.ExportEx path & "consolidado.qvd", 4
end sub
This works fine when I open the document in local, but when I open the document in AccessPoint using web browser, it don't work. I've tried to change the macro like this:
sub SendToQVD()
set vPath=ActiveDocument.Variables("CL.QVDPath")
path=vPath.GetContent.String
set obj = ActiveDocument.GetSheetObject("CH49")
obj.ServerSideExportEx path & "consolidado.qvd", 4
end sub
But it still don't work. The path in CL.QVDPath variable is a relative path in the server (.\documentfolder\)
I also checked options in QMC:
I've tried to save as .csv file and doesn't work either...
I've tried with IE and Chrome.
What is wrong?
Thanks in advance.
Any ideas?
The most macros won't work within the AJAX client - you will need the desktop client or the IE plugin. Further you need to check if the path is available (by network-storages you will probably need an unc-path) and accessable (the storing happens with the user-account from server).
- Marcus
I've tried with IE plugin and unc-path, but it still doesn't work. Maybe something about permissions in the server...
Thanks Marcus.