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

Only show one value in frontend

Hello,

i have a table, which contains multiple fields, but at the frontend, i only want to show one certain field.
The source data looks like this:

Header
Amber
Tom
Peter

 

at the frontend, i want it to look like this (only show Amber):

Header
Amber

 

can you guys help me?

 

Labels (2)
1 Solution

Accepted Solutions
Vegar
MVP
MVP

I'm not sure what you are trying to do, but the expression below will let your dimension to only show 'Amber' values.

If (Header='Amber', Header, null())

View solution in original post

3 Replies
Vegar
MVP
MVP

I'm not sure what you are trying to do, but the expression below will let your dimension to only show 'Amber' values.

If (Header='Amber', Header, null())

vinieme12
Champion III
Champion III

" i only want to show one certain field"

You haven't specified based on what condition ?  Why Amber and not Tom or Peter ??

Do you only want to

1) show the first value ??

2) show value with most characters ??

3) Any other specific criteria ??

 

The answer changes for each use case , please add some context 

 

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
Theo_Westseit
Contributor III
Contributor III
Author

Thats what i was looking for! Thanks so much.