
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
static max for cyclic group
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!
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
May be this
If(match(getcurrentfield(groupname), 'Cyclic1')=dim1, 100, 50)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
May be try using GetCurrentField() function

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Did you mean this Anil
=If(GetCurrentField([Cyclic1]) = 'dim1', 100, 50)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ı tried but making some syntax error, ı need the whole sentence...

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try this
=If(GetCurrentField([Cyclic1]) = 'dim1', 100, 50)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Yes, but perhaps this. Removed single quote
If(GetCurrentField([Cyclic1]) = dim1, 100, 50)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
thanks! it worked!
the error was lack of [ ] , thank you!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You def. need the single quotes around dim1....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Yes, that's the drawback. But, it will work. May be team work further versions
