Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a datasource with a Customers table (Code, Description):
1, Customer1
2, Customer2
3, Customer3
001, Customer4
4, Customer5
After loading all related data of Customer1 and Customer4 are summed.
Is it possible to cast the field as a string when loading the data into QlikView?
use text(Code) when loading your data
use text(Code) when loading your data
try using
LOAD
text(Code) as Code,
Description
from...