Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
what macro should i use? i'm using this but it isn't working
sub Exporta_a_Excel
set obj = ActiveDocument.GetSheetObject("CH13")
set vArchivo = "N:\APP\MARGEN_ESTIMADO\QVW\Informe.xls"
obj.ExportEx vArchivo,5
end sub
Try here:
luciancotea.wordpress.com/2013/07/18/qlikview-macros-useful-collection/
hi check this thread:
that macro didn't work for me ![]()
Hi
i edited only the object part but it isn't working. Do you know why?
FUNCTION ExcelExport(CH13)
set obj = ActiveDocument.GetSheetObject( CH13)
w = obj.GetColumnCount
if obj.GetRowCount>1001 then
h=1000
else h=obj.GetRowCount
end if
Set objExcel = CreateObject("Excel.Application")
objExcel.Workbooks.Add
objExcel.Worksheets(1).select()
objExcel.Visible = True
set CellMatrix = obj.GetCells2(0,0,w,h)
column = 1
for cc=0 to w-1
objExcel.Cells(1,column).Value = CellMatrix(0)(cc).Text
objExcel.Cells(1,column).EntireRow.Font.Bold = True
column = column +1
next
c = 1
r =2
for RowIter=1 to h-1
for ColIter=0 to w-1
objExcel.Cells(r,c).Value = CellMatrix(RowIter)(ColIter).Text
c = c +1
next
r = r+1
c = 1
next
END FUNCTION
SUB CallExample
ExcelExport( "CH01" )
END SUB