Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear All,
select min(renewalbase) from (select DISTINCT top 3 [renewalbase] from STP_LMS_Lead (NoLock) order by renewalbase desc) a)
how i can achive the above sql code in qlikview [ RenewalBase is date field ]
Sarfaraz
LOAD
max(renewalbase,3) as ThirdLargestValue
FROM ...
LOAD
max(renewalbase,3) as ThirdLargestValue
FROM ...
Dear Gysbert,
Thanks for your solution ...it is working as expected brilliant..
Sarfaraz