Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: 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