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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Need help to know about the Filebase name function

Hi ,

Please help me to understand the filebase name predefined function in qlik view. As i am beginner ..Thanks in advance.

Regards

Sekhar

Labels (1)
4 Replies
Not applicable
Author

use the function

filebasename()

sujeetsingh
Master III
Master III

Here are some

FileBaseName()

FileName()

FileExtension()

FileSize( )

FileTime(  )

alexandros17
Partner - Champion III
Partner - Champion III

return the name of the file you are reading from, without extension:

load *,

filebasename() as myfilename from c:\abc.txt;

gives you a table with an extra field called myfilename in which you find abc

Not applicable
Author

see in help document u will get more