Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Select field from group and use it as Chart Dimension

[View:http://community.qlik.com/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.02.89.41/Select-field-from-Group-and-use-it-as-Chart-Dimension.qvw]

Hi Guys,

I created a group.

I need to use the group as a dimension in several charts.

I don't want to add the group as a dimension as we do with a regualr field.

I need to read the selected field from the group, then use it as Dimension in my chart.

Please see the file attached. I can retrieve the selected field in the group usign =GetCurrentField(Group)

but the chart is showing the field instead of the values in it. In example, it shows the value for Country instead of the values for USA, France, etc.

How can I work it around?

Thanks in advance,

Aldo.

1 Solution

Accepted Solutions
Miguel_Angel_Baeyens

Hello Aldo,

Use instead in calculated Dimension:

=$(=GetCurrentField(Grp1))


Hope that helps.

View solution in original post

2 Replies
Miguel_Angel_Baeyens

Hello Aldo,

Use instead in calculated Dimension:

=$(=GetCurrentField(Grp1))


Hope that helps.

Not applicable
Author

Great!

Thanks.