Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Federico_Rizzello
Partner - Contributor III
Partner - Contributor III

Qlik Sense, plot total average and distinct values at the same time

Hi Community,

I'm trying to plot in line, bar or combo chart my data with:

  • 2 dimensions
    • Date, expressed in Year Month
    • Store, expressed as a string that show the store's name
  • 1 measure: sum of sales (in quantity)

I would like to plot on the same chart the average of sales by date of all the stores (or the average of the selected stores), at the same time with my distinct stores.


My target is to create a visualization that lets my user to visualize the difference between the total average and the single stores.


Here is a snapshot of my line chart.

fd693529a22c4b1f966a6af0cfa52b4f.png


Thanks in advance for any suggestion and precious help. Best regards.


- Federico Rizzello



3 Replies
dwforest
Specialist II
Specialist II

Default chart visualization can have multiple dimension OR multiple measures.

Federico_Rizzello
Partner - Contributor III
Partner - Contributor III
Author

Thanks for your reply.

I get your suggestion, but I don't know how to add a second measure (e.g. the overall average) while I already have two dimensions (Dates, Stores) on my chart.

Anonymous
Not applicable

Hello Federico,

this is not a nice solution but I think it can work for your case.

Create a fake dimension called for example "Cod_Negozio_New" in the following way:

LOAD DISTINCT Cod_Negozio, Cod_Negozio AS Cod_Negozio_New resident "your transaction table"

Concatenate

LOAD DISTINCT Cod_Negozio, 'Average' AS Cod_Negozio_New resident "your transaction table"

In this way your new store dimension will contain a new value 'Average' associated with all your original stores.

Then in graph use "Cod_Negozio_New" instead of "Cod_Negozio" and in the expression write something like this: IF(Cod_Negozio_New = 'Average', AVG(Sales), SUM(Sales)).

Hope this helps.

Regards