Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Straight Table Export via macro to .txt file (Comma Deliminated)

Hi!

i was wondering if anyone in the community has exported a straight table to a txt file with use of Macro?

if so would be great to know if there is some code to support this macro function?

Best,

Bradley

1 Solution

Accepted Solutions
tresesco
MVP
MVP

May be something like this?

Sub exp()
set obj = ActiveDocument.GetSheetObject("CH01")

obj.ExportBiff "C:\test.csv"
End Sub

Export in csv then save accordingly.

View solution in original post

1 Reply
tresesco
MVP
MVP

May be something like this?

Sub exp()
set obj = ActiveDocument.GetSheetObject("CH01")

obj.ExportBiff "C:\test.csv"
End Sub

Export in csv then save accordingly.