Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I'm using a group as a dimension with Store and ItemID as group components. I want a field ItemDescription to show only when the ItemID value for the cyclic group is selected, otherwise hidden. How should I do this?
GetCurrentField(GroupName) = 'ItemID'
GetCurrentField should return the selected item. With that in the conditional of the field, it should only show when ItemID is selected. Replace GroupName with whatever you named the Group.
GetCurrentField(GroupName) = 'ItemID'
GetCurrentField should return the selected item. With that in the conditional of the field, it should only show when ItemID is selected. Replace GroupName with whatever you named the Group.
Thank you that works great.