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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
qlikwiz123
Creator III
Creator III

Distinct Field Value in Straight Table

Hi,

How do I display Distinct Values of a Field in a chart, like a Straight Table? I know List boxes etc show Distinct values but this is not the case in Tables. I don't want to use Distinct in Load since I need the Field values for other charts.

Current Data:

File Name     Ver

FileA               1

FileB               1

FileA               2

Expected Output

File Name     Ver

FileB               1

FileA               2

I need to show Unique File Names based on the Maximum Ver number available for them.

1 Solution

Accepted Solutions
vishsaggi
Champion III
Champion III

Just use Max(Ver) in your expr.

Dim: Filename

Expr: Max(Ver)

View solution in original post

2 Replies
vishsaggi
Champion III
Champion III

Just use Max(Ver) in your expr.

Dim: Filename

Expr: Max(Ver)

qlikwiz123
Creator III
Creator III
Author

Thank you so much Vishwarath