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

selection on name

Untitled.pngHi All,

I have one question that I want only one name when I select serial number .....9221 then it will show me only B.U bhandari name and order number .....0344

PFA

Thanks

Prashant

1 Solution

Accepted Solutions
prma7799
Master III
Master III
Author

Hi Kamiel,

Date

=Aggr(FirstSortedValue(Date(Floor(Date(BL_DT_VPC)),'DD/MM/YYYY'), -BL_DT_VPC),SERIAL_NUM_VPC)

is ok but I want only one record for order number .....0344 but I got solution

=if(aggr(max(BL_DT_VPC),ORDER_NUM),date(aggr(max(BL_DT_VPC),SERIAL_NUM_VPC)), date(BL_DT_VPC,'DD/MM/YYYY'))

Thanks

Prashant

View solution in original post

11 Replies
prma7799
Master III
Master III
Author

I want latest BL_DT_VPC date.

prma7799
Master III
Master III
Author

Hi Community,

Any idea?

Thanks

Prashant

Anonymous
Not applicable

So in chart you just want to show latest record for Serial no. and name order ...

Am I correct ?

can you share a sample qvw .

kavita25
Partner - Specialist
Partner - Specialist

Hi,

Post a sample application.

Regards,

Kavita

Not applicable

Hi prashant,

find sample file in attachment,hope this helps you in your scenario

kamielrajaram
Creator III
Creator III

Hi Prashantbi,

Hope this helps

Name -

=Aggr(FirstSortedValue(NAME, -BL_DT_VPC),SERIAL_NUM_VPC)

Order Num

=Aggr(FirstSortedValue(ORDER_NUM, -BL_DT_VPC),SERIAL_NUM_VPC)

Date

=Aggr(FirstSortedValue(Date(Floor(Date(BL_DT_VPC)),'DD/MM/YYYY'), -BL_DT_VPC),SERIAL_NUM_VPC)

Regards

Kamiel

Not applicable

We can write macro for this. It Wil show the data which is selected only.

Not applicable

sub a

set LB = ActiveDocument.GetSheetObject("LB29")

set box=LB.GetProperties

box.Layout.HideExcluded = true

LB.SetProperties box

end sub

here LB29 is the object ID for that list box.

prma7799
Master III
Master III
Author

Thanks Bhavana