Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I'm new to Qlik Sense so forgive my ignorance. I'm creating a new table from an existing load using the resident predicate. I want the new table to have a new field called "Region" and have all rows underneath prefilled with "NAFTA".
How do I do this in the load script?
Load
[Vehicle_x0020_Line-eu28] as fam,
[Program_x0020_Status-eu28] as status
Resident [properties-eu28];
DROP TABLE [properties-eu28];
Give a try on the below code:
Load
[Vehicle_x0020_Line-eu28] as fam,
[Program_x0020_Status-eu28] as status,
'NAFTA' as Region
Resident [properties-eu28];
DROP TABLE [properties-eu28];
Give a try on the below code:
Load
[Vehicle_x0020_Line-eu28] as fam,
[Program_x0020_Status-eu28] as status,
'NAFTA' as Region
Resident [properties-eu28];
DROP TABLE [properties-eu28];