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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

adding fields

Guys i have the following case (see attached the 2 excel files). I want to find a way to add up the fields having the same case id

1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

What do you mean 'add up'. Strings don't add up very well. Numbers work a lot better. If you want to concatenate the string values you can use the concat function:

LOAD case, concat(description, '\') as description_list

FROM ...

GROUP BY case;


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

What do you mean 'add up'. Strings don't add up very well. Numbers work a lot better. If you want to concatenate the string values you can use the concat function:

LOAD case, concat(description, '\') as description_list

FROM ...

GROUP BY case;


talk is cheap, supply exceeds demand
Not applicable
Author

Thanks for your support