Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts,
i have the below requirement as given below,
Filter : Country
Values : India , China , Russia
I want to display individual straight tables for each country's details.
the report will not be provided with the "Country" filter as a list box ..
i want to pass the hardcoded value into each table which will be specific for each country.
Kinldy help me on this .
Thanks
You can use like this?
=IF(Aggr(Rank(Count({<Country = {'India'}>} Distinct SalesPersonId)),2),SalesPersonName)<=10 ,Country)
You may try this definition for each chart
Sum({<Country = {'India'} >} Measure)
Sum({<Country = {'China'} >} Measure)
Sum({<Country = {'Russia'} >} Measure)
Hi Anil , can we do it while adding dimensions ?
=IF(Aggr(Rank(Count(Distinct(SalesPersonId)),2),SalesPersonName)<=10 ,Country)
i am using the above expression to calculate the top 10 rank , in calculated dimension
now how can i pass specific country into this ??
This functions will effect to the dimension as well when you use same in measure, Anyway
If(Country='India', Country)
If(Country='China', Country)
If(Country='Russia', Country)
You can use like this?
=IF(Aggr(Rank(Count({<Country = {'India'}>} Distinct SalesPersonId)),2),SalesPersonName)<=10 ,Country)
Thanks Raju , This is working absolutely fine