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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out 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

Labels (1)
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, ' ')

tresB
Champion III
Champion III

With a distinct key, like:

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

maxgro
MVP
MVP

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