Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi ,
Please help me to understand the filebase name predefined function in qlik view. As i am beginner ..Thanks in advance.
Regards
Sekhar
use the function
filebasename()
Here are some
FileBaseName()
FileName()
FileExtension()
FileSize( )
FileTime( )
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
see in help document u will get more