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

Flat Files

How to Connect Flat  Files In BI Script ? Anyone Example?

1 Reply
sibin_jacob
Creator III
Creator III

Hi Nanda,

You can use the below script to load data from a text file.

Directory;
LOAD Date_Id,
   
Physician_Id,
   
Site_Id,
   
Geo_Id,
   
#New_Patients
FROM
Test.txt
(
txt, codepage is 1252, embedded labels, delimiter is '\t', msq);

Please find the attached sample text file.

Thanks,

Sibin Jacob.C