Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
priyav24
Creator II
Creator II

How to display a string with the condition??

Hello Everybody,

                              I have requirement where i need to display a' Account Name 'field if AccountID='001'in a textbox

EG:

001    A

002   B

003  C..

I need to create a textbox where it should display'A' along with the condition Account ID='001' without making any selection it should be default.

Thanks in Advance,

Priya

1 Solution

Accepted Solutions
Not applicable

Hi

=only({<FieldName={'001'}>} FieldName)

This will display unique value for the field 'FieldName'  --> A   (value is set by default to 001)

best regards

Chris

View solution in original post

2 Replies
Not applicable

Hi

=only({<FieldName={'001'}>} FieldName)

This will display unique value for the field 'FieldName'  --> A   (value is set by default to 001)

best regards

Chris

priyav24
Creator II
Creator II
Author

Thanks @christian juillard