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: 
Anonymous
Not applicable

Displaying field values in a Text Object

How do I write an expression in a text object to display the name of a salesperson for a specific region.  I want the region in the text object to be fixed to 'Europe'.

Thanks

Greg

1 Solution

Accepted Solutions
lvf
Employee
Employee

Try this....

=Concat({$<Region={'Europe'}>}SalesPerson, ' ')

View solution in original post

3 Replies
lvf
Employee
Employee

Try this....

=Concat({$<Region={'Europe'}>}SalesPerson, ' ')

tresesco
MVP
MVP

With a distinct key, like:

=Concat({$<Region={'Europe'}>} Distinct SalesPerson, ' ,')

maxgro
MVP
MVP

=concat({$<region={Europe}>} distinct salesperson , chr(10))