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

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Show Company Avg in Section Access

Hello,

Currently I have limit each sales rep to their data only but I'd like to show a graph line of company avg versus theirs.  I'm guessing it needs to be scripted in the load somehow.  Please advise.

Thanks,

Vibol

1 Reply
tresB
Champion III
Champion III

Yes just create a table with a KEY and the average, may be like:

Avg:

Load

    Autonumber(Field1&Field2&Field3) as KEY,

    Avg(Sales) as CompanyAvgSales

resident <> Group by Field1, Field2, Field3;

Assuming Field4 (which is not there in the composite key) is your sale rep field.

Now create a similar key in your transnational table, it should work.