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

Max / One row

Hi again,

   

    

OrderSetDescriptionTime
1-7778881XXXSaturday, June 17, 1905
2YYYSaturday, June 17, 1905

How can i show only one row  ?

i have the same order number and different set , the time is the same.

1 Solution

Accepted Solutions
ramasaisaksoft

Hi Naor,

in expression u can write like below

=aggr(max(set),[ord id])

but i hope all order id 's  need to be fill with some value no null values.

View solution in original post

5 Replies
sunny_talwar

Two questions:

1) Are you trying to get ride of one of the rows in the script or just on the front end?

2) Which row would you like to hide: Set = 1 or Set = 2?

Anonymous
Not applicable
Author

It would not be possible as associative nature of Qlik...

In your case OrderID in unique but Set & Description is different..

miguelbraga
Partner - Specialist III
Partner - Specialist III

Hi,

Can you please send us a qvw sample or a qvd or even a screenshot of your table? Do you want to remove all the rows except the first one with the same Order ID? Can you please describe better your issue?

Regards,

MB

Peter_Cammaert
Partner - Champion III
Partner - Champion III

In a User Interface Object (like a straight table), remove all dimensions that you don't need (like Set and Description). There will only one row for each unique combination of "Order" and "Time".

As an alternative (and if you want to keep displaying all values for Set), remove Set as a dimlension column, and add it as an expression like:

=Concat(Set, ', ')

All values for Set that go with this unque combination of Order & Time, will now be listed as a single string.

ramasaisaksoft

Hi Naor,

in expression u can write like below

=aggr(max(set),[ord id])

but i hope all order id 's  need to be fill with some value no null values.