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

Announcements
Discover how organizations are unlocking new revenue streams: Watch 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)
1 Solution

Accepted Solutions
pravinboniface
Creator III
Creator III

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

View solution in original post

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