Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi 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
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
I want latest BL_DT_VPC date.
Hi Community,
Any idea?
Thanks
Prashant
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 .
Hi,
Post a sample application.
Regards,
Kavita
Hi prashant,
find sample file in attachment,hope this helps you in your scenario
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
We can write macro for this. It Wil show the data which is selected only.
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.
Thanks Bhavana