Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Everyone,
I have used alternate states to obtained the variances (movements) between two respective dates.
Please refer to my module attached (Comparatives).
In the module there are two tables:
Both tables work with the "vat" button but ideally I would only like one table to show the data.
Breakdown of table using: Alternate States
Label heading "Prior" is set to sum revenue according to alternate state A dates while;
Label heading "Current" is set to sum revenue according to alternate state B dates.
The above works BUT when I select the specific "cause" per the cause list box the figures differ between the two tables.
Think it is because the "cause" list box properties the alternate states are not set.
Question:
How do I include BOTH alternate states in the "cause" list box? Or any other solutions are welcome.
Thank you
Keep the cause list box in default state and reference the cause value set in your set expressions like
sum({[State A]<Cause = p({$}Cause)>} [Revenue])
or
sum({[State A]<Cause = $::Cause >}[Revenue])
[latter will copy the selected state, first all possible values].
Keep the cause list box in default state and reference the cause value set in your set expressions like
sum({[State A]<Cause = p({$}Cause)>} [Revenue])
or
sum({[State A]<Cause = $::Cause >}[Revenue])
[latter will copy the selected state, first all possible values].
Hi Swuehl,
Thank you for the response, works 100%