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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Send to Excel Limitation

I have a Table box were one of the column contains large text. When I use Send to Excel button on caption the cell that contains text in the result excel file is truncated to 255 char. Does any one knows how to overcome this problem?

Labels (1)
1 Reply
Anonymous
Not applicable
Author

You can do it using a macro like this:


sub Export
ActiveDocument.GetSheetObject("TX01").CopyTextToClipboard
set XLApp = CreateObject("Excel.Application")
XLApp.Visible = True
set XLDoc = XLApp.Workbooks.Add
set XLSheet = XLDoc.Worksheets(1)
XLSheet.Paste XLSheet.Range("A1")
end sub

(it requires system access)