Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Remove Field during data Load

Hi All,

It's been a while since I've worked on Qlikview and my memory is very rusty. I have a Dashboard that loads  data from  an Excel file. One of the columns in the file is called Measures and it contains Fields such as: Units, Region, Technology, Revenue.  During my Load I want to NOT load the Revenue field (I don't want users of this Dashboard to have access to sensitive Revenue data).

Can you help me in how to exclude the Revenue Field from the load.

Load
Data,
Market,
Measure
Technology,
Region,
ShipDate,
  
ApplyMap('Portfolio_Mapping2',Technology,'') AS Part_Type

FROM
 
[$(vSource_QVD_Folder) CUrrent.qvd](
qvd);

Thanks for the help - the rustiness will go away soon

John

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Maybe add something like :

     where not [Measure] = 'Revenue'

View solution in original post

3 Replies
Anonymous
Not applicable
Author

Maybe add something like :

     where not [Measure] = 'Revenue'

Not applicable
Author

thanks for the quick reply. I tried using this but it comes up as a syntax error. Do I place this code directly after the FROM section in the script?

FROM
 
[$(vSource_QVD_Folder) CUrrent.qvd](
qvd);

Not applicable
Author

Load
Data,
Market,
Measure
Technology,
Region,
ShipDate,
  
ApplyMap('Portfolio_Mapping2',Technology,'') AS Part_Type

FROM
 
[$(vSource_QVD_Folder) CUrrent.qvd](
qvd)


where Measure<>'Revenue' ;