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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Export to XBRL from Qlikview

Hi,

I have a requirement wherein the data from qlikview has to be exported to XBRL .

Please let me know how this could be done

1 Reply
marcus_sommer

Input is possible - http://community.qlik.com/message/558126#558126 - but output not (directly). XBRL is xml and maybe you could create a qv-chart with the proper data-structure and exports it then to xml, here an example from APIGuide.qvw:

rem create new pivot table and export in xml
set chart = ActiveDocument.ActiveSheet.CreatePivotTable
chart.AddDimension "ProductType"
chart.AddExpression "sum(Amount)"
chart.ExportXml "C:\test.xml"

- Marcus