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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Using GetFieldSelections in expression

I'm trying to do something similar to this http://community.qlik.com/forums/t/27578.aspx but I really can't see what I'm doing wrong.

Count ({1< [Opened By_Korr] = {"$(=GetFieldSelections("[Closed By_Korr]"))"} >} Number)


I'm sure it's a simple syntax error and that someone can spot it right away.

//Daniel

Labels (1)
1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Daniel,
Remove " " around [Closed By_Korr], try to use single quotes or no quotes:
Count ({1< [Opened By_Korr] = {"$(=GetFieldSelections('[Closed By_Korr]'))"} >} Number)

View solution in original post

2 Replies
Anonymous
Not applicable
Author

Daniel,
Remove " " around [Closed By_Korr], try to use single quotes or no quotes:
Count ({1< [Opened By_Korr] = {"$(=GetFieldSelections('[Closed By_Korr]'))"} >} Number)

Not applicable
Author

It worked when I removed the quotes.

Thank you so much!