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: 
Surya
Creator II
Creator II

Macro using save as Sttright table to QVD

Hello .,

sub Export

set obj1 = ActiveDocument.GetSheetObject("CH197")

obj1.ExportBiff "C:\User 4\Surya\Date.qvd"

end sub

I Reload every day my dashboard on that time the QVD save as Today's Date.,Plase help me 

 

Thanks In Advance

 

Labels (2)
1 Solution

Accepted Solutions
Surya
Creator II
Creator II
Author

sub Export
set obj1 = ActiveDocument.GetSheetObject("CH197")

strDate = Day(Date()) &"-"& month(date()) &"-"& Year(Date())

obj1.ExportBiff "C:\User 4\Surya\"&strDate&".xlsx"

end sub

View solution in original post

1 Reply
Surya
Creator II
Creator II
Author

sub Export
set obj1 = ActiveDocument.GetSheetObject("CH197")

strDate = Day(Date()) &"-"& month(date()) &"-"& Year(Date())

obj1.ExportBiff "C:\User 4\Surya\"&strDate&".xlsx"

end sub