Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi all
How to get current selection in the Drill down /cyclic group field?
create a chart> in general tab down u have edit groups>click on new>choose drill down or cyclic >add dimension >click on ok.
by using drill down and cyclic we can have multiple dimensions in same manner
Use getcurrentfield() function. When you refer to the cycle or drill group name, enclose it it sqare brackets []
ex:
getcurrentfield( [DrillGroupName])
getcurrentfield( [CycleGroupName])
It will return the current field name the user is looking at as a string
thank you guys