Skip to main content
Announcements
Do More with Qlik - Qlik Cloud Analytics Recap and Getting Started, June 19: REGISTER
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))