Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
i'm trying to load table file from xls containing several date(about 7000).
I create a list box and i want to arrange date correctly(from past to present)
I tried changing sort option with sort by, but doesn't work properly(see attached qvw file)
Can anyone suggest any solution?
Thank's
Diego
Hi,
Use this code in the script and sort the field by number from sort tab.
date(date#(DATE,'DD/MM/YYY'),'DD/MM/YYY') as DATE
- Sridhar
HI Diego,
change your load script into:
LOAD DATE(DATE) AS DATE
FROM(biff, embedded labels, table is Sheet1$);
Then it should work (see attachment)
HI Sridhar,
thank u for your reply;
I 've tried to write this code in the script
LOAD date(date#(DATE,'DD/MM/YYY'),'DD/MM/YYY') as DATE
But i get no data or error.
See attachement for detail.
bye