Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
david_ze
Partner - Contributor III
Partner - Contributor III

How to disply field value based on Input text

Hi all,

I'll appreciate your help on a issue I have:

I'm using input box to let the user enter the project number. Input field is USER_PROJECT.

After entering the project number into  the field USER_PROJECT I would like to presend into a text object the project name (field "PROJ_DES").

Fields I'm loading from the DB are Project_Number and PROJ_DES. The PROJ_DES that should be presented into to text object should be

the PROJ_DES when Project_Number=USER_PROJECT.

I'll appreciate your promptly help on how to this.

best

David

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Try

=only({<Project_Number = {'$(USER_PROJECT)'}>} PROJ_DES)

View solution in original post

2 Replies
swuehl
MVP
MVP

Try

=only({<Project_Number = {'$(USER_PROJECT)'}>} PROJ_DES)

david_ze
Partner - Contributor III
Partner - Contributor III
Author

Thanks !  Workd ok...