Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have come across this use case multiple times and can not come up with a solution. Suppose I am building two KPIs, same calculation, but require a common filter (say product type) so we can compare by products, but separate filters, say countries, so that we can compare values of this kpi by product for the two different selected groups of companies?
Any ideas how something like this could be accomplished? The issue I have is when I create two separate tables, I can't get them to apply a common filter, but when I join the tables I can't apply a separate country filter for each one.
I think that this may be a good case use for alternate states.
Set up information can be found here:
A great webinar on alt dimensions and states can be found here:
201 Tips and Tricks by Cullin Tripp
Use Alternate States
Create an alternate state like "ComparisonCountryFilter". Assign the Alternate state to the filter and KPI that will have the comparison country. In the KPI, use something like this
=Count({<Country=P({[ComparisonCountryFilter]}Country)>}Something)
It is saying that you will count Something where Country is equal to all the Possible Countries selected in the Alternate State filter.
I think that this may be a good case use for alternate states.
Set up information can be found here:
A great webinar on alt dimensions and states can be found here:
201 Tips and Tricks by Cullin Tripp
Use Alternate States
Create an alternate state like "ComparisonCountryFilter". Assign the Alternate state to the filter and KPI that will have the comparison country. In the KPI, use something like this
=Count({<Country=P({[ComparisonCountryFilter]}Country)>}Something)
It is saying that you will count Something where Country is equal to all the Possible Countries selected in the Alternate State filter.
In my formula
=Count({<Country=P({[ComparisonCountryFilter]}Country)>}Something)
You only need to use the Alternate state in the filter, not the KPI.
Alternate states worked beautifully, and I know what they're used for, thank you