Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

IS NULL Mapping Load

Hi all,


Please I will like to check whether this script is correct:

Map_Sales:
MAPPING
LOAD

IF
(IsNUll("SalesID"), '1001', "SalesID") AS "SalesID"
,
IF
(
IsNUll("SalesName"), 'Not Known', "SalesName") AS [SalesType]
;
SQL
SELECT *
FROM "Systems"."Sales";

Regards,

1 Reply
Roop
Specialist
Specialist

You have done the Mapping Load that creates the map - Then you need to perform the ApplyMap('Map_Sales' .....

Otherwise it is fine - but you may wish to group the SalesID and SalesName to ensure there are no duplicates - it would still work but be a bit more efficient