cancel
Showing results for 
Search instead for 
Did you mean: 

If and Else statement in webi

Former Member
0 Kudos

Hello Friends,


I am struggling with a if and else statement in WebI, thought i post it here for quick help.

=If
([V100 2012].[Net Forecast]=0 Or IsNull([V100 2012].[Net Forecast]))
Then ([V200 2012].[Net Forecast])

ElseIf
([V200 2012].[Net Forecast]=0 Or IsNull([V200 2012].[Net Forecast]))
Then ([V300 2012].[Net Forecast])

Else
([V100 2012].[Net Forecast])

This statement does not seem to be working in a situation where variable [V100 2012].[Net Forecast] has a value greater than 0 and [V200 2012].[Net Forecast] & [V300 2012].[Net Forecast] is either 0 or null as it should give the value for [V100 2012].[Net Forecast] but instead produces the value for [V300 2012].[Net Forecast]

Can someone please help.


Thanks.

Former Member
0 Kudos

Thanks Amit

The new statement worked up to second elseif statement but failed on the third

What I am trying to achieve is this: I have 3 variables A, B & C

when A=0 or isnull display B

when B=0 or isnull display C

when C=0 or isnull display A

When A>0 always display A regardless of whether B & C =>0 or IsNull

amitrathi239
Active Contributor
0 Kudos

you can try to create two variables.

First variable

when A=0 or isnull display B

when B=0 or isnull display C

when C=0 or isnull display A

Second Variable on the first variable and When A>0 always display A regardless of whether B & C =>0 or IsNull

Former Member
0 Kudos

Thanks Amit,

I created two variables as advised and it worked.

Accepted Solutions (0)

Answers (1)

Answers (1)

amitrathi239
Active Contributor
0 Kudos

what about if you add one more if-else condition?

=If
([V100 2012].[Net Forecast]=0 Or IsNull([V100 2012].[Net Forecast]))
Then ([V200 2012].[Net Forecast])

ElseIf
([V200 2012].[Net Forecast]=0 Or IsNull([V200 2012].[Net Forecast]))
Then ([V300 2012].[Net Forecast])

elseif

([V100 2012].[Net Forecast]>0 Or IsNull([V200 2012].[Net Forecast]
or IsNull([V300 2012].[Net Forecast])))

Then ([V100 2012].[Net Forecast])

else

([V100 2012].[Net Forecast])