Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
PepeMontes
Partner - Contributor III
Partner - Contributor III

Distribute total

Hello dear experts,
I have a dynamic table where i have a few fields, into those fields i have Sales and Stores.
I'm trying to distribute equitably the total of the Sales of all stores into
12 specfic stores, excluding the other stores and distributing this total to only this specific stores..
This is the expresion which im using to try it:
Sum({$<[Stores]={"CEDIS GAVILAN MATRIZ","CEDIS ZAPOPAN","GUADALAJARA","LEON","LIVERPOOL","MODERNA","MONTERREY","PUEBLA","QUERETARO","TIJUANA","TOLUCA","XALAPA"}>}Total([Sales))/12

Unffotunally this expression dont row me the result which im looking for.

I will appreciattte if someone could help me with this.

Best Regards.

JAMM.

Labels (1)
1 Solution

Accepted Solutions
Kashyap_R
Partner - Specialist
Partner - Specialist

Hi 

Try this

In Dimension write the below expression and remove null values

IF(Wildmatch([Stores],'CEDIS GAVILAN MATRIZ','CEDIS ZAPOPAN','GUADALAJARA','LEON','LIVERPOOL','MODERNA','MONTERREY','PUEBLA','QUERETARO',
'TIJUANA','TOLUCA','XALAPA')<>0,[Stores])

In Measure give this

Sum(Total [Sales)/12

or

Sum(All [Sales])/12

 Hope this helps

Thanks

Thanks and Regards
Kashyap.R

View solution in original post

1 Reply
Kashyap_R
Partner - Specialist
Partner - Specialist

Hi 

Try this

In Dimension write the below expression and remove null values

IF(Wildmatch([Stores],'CEDIS GAVILAN MATRIZ','CEDIS ZAPOPAN','GUADALAJARA','LEON','LIVERPOOL','MODERNA','MONTERREY','PUEBLA','QUERETARO',
'TIJUANA','TOLUCA','XALAPA')<>0,[Stores])

In Measure give this

Sum(Total [Sales)/12

or

Sum(All [Sales])/12

 Hope this helps

Thanks

Thanks and Regards
Kashyap.R