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

Announcements
FLASH SALE: Save $500! Use code FLASH2026 at checkout until Feb 14th at 11:59PM ET. Register Now!
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 )

Labels (1)
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