Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Macro is not running in Accesspoint

Hi,

I am using Qlikview Personal Edition 11.2

I wrote macro as:

By selecting patient in list box, it should  the read the chart properties and create an excel with that data in a specified path.

In my PE version, its working. But when I try to run from accesspoint, its showing issue.

I am opening the dashboard with IE plugin only.

image.JPG

Can anyone reply how to run macro in accesspoint.

Thanks,

Sahithya

17 Replies
Not applicable
Author

Macro : Reading chart 148 properties into excel named patient ina a specified path.

Macro is as below :

 

Sub Test

XlsPath = "c:\lab\patient.xls"

Set objExcel = CreateObject("Excel.Application")
Set objWorkbook = objExcel.Workbooks.Add()
Set objWorksheet = objWorkbook.Worksheets(1)

set table = ActiveDocument.GetSheetObject( "CH148" )

For RowIter = 0 to table.GetRowCount-1
For ColIter = 0 to table.GetColumnCount-1
set cell = table.GetCell(RowIter,ColIter)
objWorksheet.Cells(RowIter+1,ColIter+1).Value=cell.Text
Next
Next

objWorkbook.Saveas XlsPath
objWorkbook.close
objExcel.quit

end sub

Not applicable
Author

Hi Sahitya Garu,

Myself I am Sireesha.I am from Hyderabad.Don't mind me as this rely is not related to your question.I am entirely new to Qlik View and i have working experience on cognos.I am very much interested to learn Qlik View.I have seen your posts in Qlik community and thought you are the one from whom i can get help.i want to get trained from a real time employe rather than an institute over here.

Please let me know if anyone is giving training for the same...

Looking forward to hear from you...

Thanks for your help in advance..

Regards,

Sireesha Meka

richard_chilvers
Specialist
Specialist

I have the same problem with a macro which is designed to create a file on the external network.

I look forward to more ideas on what the issue is.

Not applicable
Author

You can go through reference manual and Qlikview tutorial.

aveeeeeee7en
Specialist III
Specialist III

Not applicable
Author

Thank you Sahitya...

Regards,

Sireesha

richard_chilvers
Specialist
Specialist

Have you checked that Access Point is using the IE plugin?

When you load AccessPoint, next to where it says Welcome Sahithya, it will say Favourites & Profile.

Click here to make sure the PlugIn is being used.

Not applicable
Author

IE plugin only selected there