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

Announcements
Only at Qlik Connect! Guest keynote Jesse Cole shares his secrets for daring to be different. Learn More!
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

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