Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
VeredBachar
Partner - Contributor II
Partner - Contributor II

cyclic dimension name field

hi,  i want to text cyclic dimension name field  that current show

in Text Object, or Button

 

Labels (1)
3 Replies
pravinboniface
Creator III
Creator III

Use GetCurrentField('YourCyclicDimensionName') for current dimension name
Use GroupDimensionLabel('YourCyclicDimensionName') for current dimension label

Chanty4u
MVP
MVP

Try this 

Pick(

    Match($(vDim), 'Year', 'Month', 'Customer'),

    Year,

    Month,

    Customer

)

 

In text object 

='Current Dimension: ' & $(vDim)

 

savioricardog
Contributor III
Contributor III

Hi @VeredBachar.

@pravinboniface gave a nice soluction.

I tried the way that he said and it works very well.

Use GroupDimensionLabel('YourCyclicDimensionName') in button label.

how you will can check below:

GetDimensionLabel.gif