Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi there,
ı am trying to write static max for cyclic group,
My cyclic groups name is = Cyclic1
And ı have 3 dimensions in it dim1 , dim2, dim3
now I want to write an if statement in the static max box,
but it does not work when I write this (it does not recognize cyclic1)
=if(Cyclic1=dim1,100,50)
it does not work for some reason,
thanks for your helps!
May be this
If(match(getcurrentfield(groupname), 'Cyclic1')=dim1, 100, 50)
May be try using GetCurrentField() function
Did you mean this Anil
=If(GetCurrentField([Cyclic1]) = 'dim1', 100, 50)
ı tried but making some syntax error, ı need the whole sentence...
Try this
=If(GetCurrentField([Cyclic1]) = 'dim1', 100, 50)
Yes, but perhaps this. Removed single quote
If(GetCurrentField([Cyclic1]) = dim1, 100, 50)
thanks! it worked!
the error was lack of [ ] , thank you!
You def. need the single quotes around dim1....
Yes, that's the drawback. But, it will work. May be team work further versions