Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
cancel
Showing results for 
Search instead for 
Did you mean: 
evansabres
Specialist
Specialist

Text Object Box

Hello -

I have a text object box in which I have the field 'cmpMNTH' representing a campaign month. When I make a selection, my desired return is to have that text object box say the month the campaign started. However, for certain categories, there may be multiple months that could be returned. Is there a way to have the box essentially have an if statement, so that when there is more than one month, the box either returns, multiple or Jan, Mar, Aug?

Not sure if this is possible.

Thank you,

Evan

1 Solution

Accepted Solutions
stigchel
Partner - Master
Partner - Master

You can use the Concat function for this e.g.

=Concat(DISTINCT cmpMNTH,',')

View solution in original post

4 Replies
sunny_talwar

May be use this:

=Concat(DISTINCT cmpMNTH, ',')

stigchel
Partner - Master
Partner - Master

You can use the Concat function for this e.g.

=Concat(DISTINCT cmpMNTH,',')

evansabres
Specialist
Specialist
Author

Thank you, this helped.

evansabres
Specialist
Specialist
Author

Thank you, this helped.