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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Problem in$ in dimension

My field Dim have the following value

Capture.PNG

if I apply the =$ it will give Error in calculation condition as output but  if I use with it without $ will work fine

=$(=SubField(Concat(DISTINCT Dim, '|'), '|', 1))

Error :Garbage after expression :"Affected"

If I use this ,it will Business affected 1 as Output

=SubField(Concat(DISTINCT Dim, '|'), '|',2 )

1 Solution

Accepted Solutions
sunny_talwar

Try this:

=$(='[' & SubField(Concat(DISTINCT Dim, '|'), '|', 1) & ']')

View solution in original post

2 Replies
sunny_talwar

Try this:

=$(='[' & SubField(Concat(DISTINCT Dim, '|'), '|', 1) & ']')

Anonymous
Not applicable
Author

Cool..

Thanks