Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
eprehu
Contributor III
Contributor III

Selection dimension sur un graphique

Est il possible d'affficher seulement les champs qui nous interresse ?

eprehu_0-1655302457555.png

J'utilise la dimension Store channel qui contient tous ces champs mais j'aimerais seulement voir apparaitre E-Commerce et Physical Store.

MErci

Labels (1)
  • Chart

5 Replies
vinieme12
Champion III
Champion III

use set analysis, refer below link

https://www.analyticsvidhya.com/blog/2014/01/set-analysis-qlikview/

 

 

=sum({<[StoreChannel]={'Physical Store','E-commerce'}>}Value)

 

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
eprehu
Contributor III
Contributor III
Author

eprehu_0-1655366456783.png

eprehu_1-1655366469964.png

I used this expression and its works.

It is possible on the pie chart, to have the e commerce and all the others on the second part ?

I want to regroup all the field except the e commerce

Thanks.

 

vinieme12
Champion III
Champion III

To group your dimension use a calculated dimension

 

Dimension=if(wildmatch([Store Channel],'Physical Store','E-commerce'),[Store Channel],'Others')

Measure = sum(Something)

 

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
eprehu
Contributor III
Contributor III
Author

Perfect thanks  a lot!!!!

vinieme12
Champion III
Champion III

missed to add, this needs to be wrapped in AGGR()

 

=AGGR( if(wildmatch([Store Channel],'Physical Store','E-commerce'),[Store Channel],'Others'),[Store Channel])

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.