In Qlik View, all files from a folder can be easily loaded using FileList():
for each file in FileList('C:\Users\...\Test\*')
load
$(file) as [File Name],
X as [Field X]
from $(file)
(...;
next
However, I cannot make FileList work in Qlik Sense. Any advice?
Arturo