Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Data Reduction?

Good day all fellow Qlikview developians,

Please assist in any advise as to what is the required procedure to implement data reduction into a dashboard.

I have followed the procedure of section acces as below:

     Section Access;

     LOAD * INLINE

     [

         NTNAME,                                ACCESS,      LOCATION

         DOMAINNAME\NATHAN,         USER,           CAPE TOWN

     ];

     Section Application;

Changed to the document opening properties to 'Initial Data Reduction Based on Section Access'.

After this i've published dashboard on the server and the data doesn't reduce to show only data specific to the LOCATION field.

What am I missing here?

Many Thanks,

Nathan Alard.

1 Solution

Accepted Solutions
deepakk
Partner - Specialist III
Partner - Specialist III

HI ,

You fieldname LOCATION should be same as the fieldname in the table. Its case sensitive nad hence the location should be in capital at both the places.

You can try out this. Comment the Section Access and Section Application from the code

// Section Access;  comment this line

     LOAD * INLINE

     [

         NTNAME,                                ACCESS,      LOCATION

         DOMAINNAME\NATHAN,         USER,           CAPE TOWN

     ];

   //  Section Application; comment this line

When you load this data the above table should link with your Location master table on the basis of LOCATION only.

Deepak

View solution in original post

2 Replies
deepakk
Partner - Specialist III
Partner - Specialist III

HI ,

You fieldname LOCATION should be same as the fieldname in the table. Its case sensitive nad hence the location should be in capital at both the places.

You can try out this. Comment the Section Access and Section Application from the code

// Section Access;  comment this line

     LOAD * INLINE

     [

         NTNAME,                                ACCESS,      LOCATION

         DOMAINNAME\NATHAN,         USER,           CAPE TOWN

     ];

   //  Section Application; comment this line

When you load this data the above table should link with your Location master table on the basis of LOCATION only.

Deepak

Not applicable
Author

Thanks Deepak! Works perfectly, the problem was in the case sensitive field relation, and corrected by renaming the field to the same case.

Much Appreciated 🙂

Nathan Alard.