Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Calling a function in another function parameter

Is it possible to do something like this in qlikview:

=GetSelectedCount(GetCurrentField(Region))

where Region is a cyclic group dimension. What is worse is that some dimensions in the group have a space in their name, such as Zip Code.


1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

2 Replies
Anonymous
Not applicable
Author

Check this thread out:

GetCurrentField use in cyclic group

Not applicable
Author

Hi,

I started doing the same exact thing. I created a variable called vCurrentRegion like so:

='[' & GetCurrentField(Region) & ']'

Then, in trying to test it I created a text box and added the following expression to it:

=$(vCurrentRegion)

But, the text box just displayed a dash character. After your suggestion, I simply used the $ expansion above in my chart expression and everything works fine there.

Can you tell me why is it that the text box does not display the current cyclic dimension name as it should? I am baffled.