Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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

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!