Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts,
Is it possible to convert the follwing expressions into set analysis
max( if (ORD_DT <= '5/18/2007',ORD_DT))
COUNT(DISTINCT if (ORD_DT<= '4/18/2007', ORD_ID))
Thanks,
Aji Paul.
try this:
Count({<ORD_DT={"<=4/18/2007"}>} DISTINCT ORD_ID)
Max({<ORD_DT={"<=5/18/2007"}>} ORD_DT)
if "" (double quotes) doesn't work then try with '' (single quotes).
HTH
Sushil