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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
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))