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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
nathan_roadshow
Contributor
Contributor

A Where LOAD with a pick Match

Hi all, 

I am looking to do the below:

I want to load a table, but have it so that it changes certain information due to outliers.

For example, I would like to Load *, but where IP DESC='Bread', have its associated Platform='Food' rather then 'Carb', which it currently equals. 

What's the best way to do this?

Material_MasterTable_Final:
LOAD
IP,
"IP Desc",
Platform,
Platform_Type

FROM [FILE LOCATION]
(qvd)

Labels (1)
2 Replies
tresB
Champion III
Champion III

It seems to be a AND condition in where clause, but not sure. Could you explain with an example?

MarcoWedel
MVP
MVP

maybe

Material_MasterTable_Final:
LOAD IP,
     [IP Desc],
     If([IP Desc]='Bread','Food',Platform) as Platform,
     Platform_Type
FROM [FILE LOCATION] (qvd);