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

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

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

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