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

Can someone help me with this script please?

Hello this is the issue I am facing, what if I want to remove these highlighted fields at the load script level, so that they are not used anywhere in the application and they cant be dropped at the source?? They are coming from the SQL Table, Dashboard, Assets: I have the below load script.

Dashboard:


Load

  Assets,
  Profits,
  Budget,
  Other tables

From dbo.xyz table.

Like This.JPG

Thanks to you all in Advance

2 Replies
Not applicable
Author

DROP FIELDS [Fees], [VAT on fees], [Whole Book] FROM Assets;

I don't really know what you mean by "and they cant be dropped at the source".  If you mean they don't get droppped from dbo.xyz.table but they do get dropped from Assets, this is what you want.

Not applicable
Author

try

Load

  Assets,
  Profits,
  Budget,
  Other tables

From dbo.xyz table

where Assets <> 'Fees' and

where Assets <> 'VAT on fees' and

where Assets <> 'Whole book';