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

Announcements
Save $650 on Qlik Connect, Dec 1 - 7, our lowest price of the year. Register with code CYBERWEEK: Register
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

multiple records in a text box

Hi,

I need to display multiple records from a field in a text box objext, i.e. multiple product codes.

Is there a function I can use for this e.g. concatenate function?

At the moment, if there is an attribute found for two product codes, only the first one displays.

Regards,

Gregg

1 Solution

Accepted Solutions
Not applicable
Author

Hi Al,

I got this working using the concatenation function.

The user enters in different criteria so if there are multiple records found, I use the concatenation distinct function to effectively list them all out.

Regards,

Gregg

View solution in original post

2 Replies
rustyfishbones
Master II
Master II

Hi Gregg,

Did you try add a Text Object and try

=GetCurrentSelections([Product Code])

This will result in a Text Object saying

Product Code: A001, B001, C001 ETC.....

You can add SUBFIELD to it to clear Product Code:

=SUBFIELD(GetCurrentSelections([Product Code]),':',2)

result is A001, B001, C001

Does that help

Regards

Alan

Not applicable
Author

Hi Al,

I got this working using the concatenation function.

The user enters in different criteria so if there are multiple records found, I use the concatenation distinct function to effectively list them all out.

Regards,

Gregg