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