Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
undergrinder
Specialist II
Specialist II

Custom Labels For Dynamic Drill Down Dymension

Hi All!

I have to make a cyclic dimension-like solution at a table (Qlik Sense 1.1).

I have downloaded an extension (Variable Button), with I am able to make a cyclic dimension.

If I add a drill-down dimension to the table, I'll get the function as a label.

The drill down hierarchy:

level 1: if($(var)=1,'A dimension','B dimension')

level 2: if($(var)=1,'Aa dimension','Bb dimension')


The label become e.g. : if($(var)=1,'A dimension','B dimension').


As far as I know there isn't solution for the mentioned problem, I'm curios do you suggest any workaround for cyclic dimension in Qlik Sense (as far I didn't find any solution, that fits).


Thank you!


G.

10 Replies
ogster1974
Partner - Master II
Partner - Master II

‌drill downs in sense are created through masteritems dimensions unfortunately we cannot use master items expressions so the combination of cyclical and drill downfunctionality is out of reach.  I'd suggest using the method your using with the 4 options available to the user rather than filter drill downs.

I think you have the way to do this covered but I'll add a link to how I've down it in the past

Makes Sense to go round in circles

undergrinder
Specialist II
Specialist II
Author

Hi Andy!

The linked documennt is very nice and useful, but doesn't cover my problem.

The main problem is, like the attached qvf at Makes Sense to go round in circles, filter works fine, altough the filter band shows the formula instead of label.

Qlik_sense_filter.png

G.

ogster1974
Partner - Master II
Partner - Master II

The filter bar will always show the formula.  this is by design.  The filter bar displays filters applied to the underlying data model not a specific chart.  For that reason your chart label will not show in the filter bar as this would be confusing if for example you named dimensions, measures differently in different charts.  How would a user know which chart the filter was applied from? and as it filtered the model as a whole would they care?

undergrinder
Specialist II
Specialist II
Author

OK, I understand, but I think it is unacceptable from the client side. They only want to see fancy labels instead of functions.

Thank you for the information!

G.

vadimtsushko
Partner - Creator III
Partner - Creator III

Andy Weir написал(а):

The filter bar will always show the formula.  this is by design.  The filter bar displays filters applied to the underlying data model not a specific chart.  For that reason your chart label will not show in the filter bar as this would be confusing if for example you named dimensions, measures differently in different charts.  How would a user know which chart the filter was applied from? and as it filtered the model as a whole would they care?

Hi, Andy.

Actually, I believe that with minor tweak in the formula for cyclic dimension in your sample application we can get result required by @undergrinder

2016-01-17 18-47-26 Qlik Sense Desktop.png

For this I changed formula from:

Pick(Match($(vSalesView),1,2,3),'Company','Product','Month')

=$(=Pick(Match($(vSalesView),1,2,3),'Company','Product','Month'))

to:

=$(=Pick(Match($(vSalesView),1,2,3),'Company','Product','Month'))

BTW, I used similar technic here: Emulating cyclic dimension group in Qlik Sense Desktop

ogster1974
Partner - Master II
Partner - Master II

‌nice tweak I'll update my document accordingly?

vadimtsushko
Partner - Creator III
Partner - Creator III

Yes, of course.

undergrinder
Specialist II
Specialist II
Author

Hi Vadim,

The cycleic dimension is known by me, this is not exactly, what I want, but I'll try the =$(=...) formula for drill down dimension.

G.

vadimtsushko
Partner - Creator III
Partner - Creator III

Hi, undergrinder.

I do not know your actual requirements, this tweak just solves the problem that you wrote about:

Hi Andy!

The linked documennt is very nice and useful, but doesn't cover my problem.

The main problem is, like the attached qvf at Makes Sense to go round in circles, filter works fine, altough the filter band shows the formula instead of label.

G.