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: 
Anonymous
Not applicable

How to Determine the size of QVW from the document

How can I find out what size is my application from the document itself w.o. navigating to the folder that contains it

1 Reply
awhitfield
Partner - Champion
Partner - Champion

Hi John,

you need to use the script only function FileSize to create a variable then expand this variable I say a text box:

LET vFileSize = filesize('D:\QlikView\Community Issues\Issues\166622.qvw');

Just substitute the path and name of your qvw in the above, either just view the value of the variable created or add it to a text object etc.

='File Size = ' & $(vFileSize) &'KB'

Gives:

HTH Andy!