on 2015 Apr 29 7:20 PM
Hi,
I have a variable as below.
If monthnumber=1 then 177.14
Elseif monthnumber=1 then 337.14
Elseif monthnumber=1 then 514.28
else 0
Crosstab below in attachment.
var1 is a running sum for each month.
If user selects Month 1 in Input control. Amount/177.14...
If user selects Month 2 in Input control. Amount/337.14 and so on.
When I remove month from crosstab. I get #multivalue error. Please see attached.
Thank you!
Veena M
I got the solution. Thanks!!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi veena,
BO will throw #multivalue error
as you are calculating Var1 value month wise and then you are removing month object #from context.
because of this BO will not be able to find values (exluding month).
So I would suggest you to keep month object as it is.
Or else tell me your extarct requirement so that I can help to find different approach
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
You could either hide the Dimension Month. right click on the Month column > Hide >> Hide Dimension
or add ForEach(month) in your variable.
Thanks,
Tanveer.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Veena,
try adding a ForEach ([month])in your variable. Besides, your If variable only tests for monthnumber = 1 ? Is this correct ?
Regards,
Rogerio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
66 | |
11 | |
10 | |
10 | |
9 | |
7 | |
7 | |
6 | |
5 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.