Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Conditional script loading

I am creating a database to contain similar data sets across different clients. My aim is to build one data warehouse, and then a Qlikview app for each client, skinned in the correct branding, look and feel etc. How can I load the data into QlikView based on just one client name.

For example, an abbreviated version of the script is below, how do I adjust the script to load only where client is equal to "simon"

With many thanks,

Simon

LOAD

     Client,   

     Metric,

     Channel,

     Month,

     Leads,

     Forecast

   

FROM

     File location

1 Solution

Accepted Solutions
tresesco
MVP
MVP

Section access implementation could be better i believe. However, to achieve what you want, can try something like this:

LOAD

     Client,   

     Metric,

     Channel,

     Month,

     Leads,

     Forecast

   

FROM

     File location where Client='Clientnameyouwant';

View solution in original post

2 Replies
tresesco
MVP
MVP

Section access implementation could be better i believe. However, to achieve what you want, can try something like this:

LOAD

     Client,   

     Metric,

     Channel,

     Month,

     Leads,

     Forecast

   

FROM

     File location where Client='Clientnameyouwant';

Not applicable
Author

Thank you tresesco, I had a bit of lplaying around because of embedding labels, but worked perfectly after that.

Thank you for you advice,

Simon