Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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
tresesco
MVP
MVP

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.