Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
for example this is my data.
item Date ord_no Rate
123 2011-jan-17 1 22
123 2011-mar-18 2 12
145 2011-feb-19 3 30
145 2011-mar-20 4 13
165 2011-jan-30 5 15
165 2011-mar-01 6 17
165 2011-mar-31 7 255
if i select financial year like 2011-2012 i need last year means upto 31-3-11 max ord_no corresponding rate.
item wise.
My result like this i need:
item rate
123 12
145 13
165 255
Thanks,
Ashok.
Then use set analysis in that function
=FirstSortedValue({<YearField={$(=Max(YearField)-1)}>} Rate, -OrdNo)
Just go with following link and it will help you to set analysis...
Hi Ashok,
Hope attached file helps you.
Regards,
Jagan.
First Sorted value help you here.
Item as dimension
=FirstSortedValue(Rate, -OrdNo)
Hope it helps
Hi,
that function is working for current year but i need last year max date rate.
see this link
-FirstSortedValue(OrdNo,-Rate)
hope it helps you
Then use set analysis in that function
=FirstSortedValue({<YearField={$(=Max(YearField)-1)}>} Rate, -OrdNo)
Hi,
but it's giving all zero's.
Hi,
Thanks,it's working perfectly.