Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Colleagues, good day!
I have one cycle group, which use in list of expressions, which contain my dimension fields.
How can i get names of stored dimension inside expressions, using GetCurrentField func?
now this func returns the name of variable, not name of dimension.
There's test model in attachment.
Thanks. !
use
GetFieldSelection('GROUPNAME')
thanks, but it's doesn't work.
I tried this: =GetFieldSelections("Test") and it returns "-"
use single quotes also it will return value only if you have anything selected in the this Grouped dimension
=GetFieldSelections('Test')
Thanks. But i shouldn't select there anything. I need to grt current visible field name in cycle group
May be use GetCurrentField('Test') or GetCurrentField(Test) without quotes. If you see a red line that is fine it should give you the current field in the group.
Oops i just saw your file.
Try this:
= $(= GetCurrentField(Test))
GetFieldSelection('GROUPNAME') not working
any luck with above Equation,