Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I need to have make a list box based on the month and based on that, I have to link a database field to that list box.
the database field format is like that : yyyy-mm-dd. Now I want that when I select a month, my chart will change accordingly.
Thanks,
Sandip Ghosh
Hi ,
Its Posible ,
example i have field>>> Emp_Join_Time
Ex :
Load
Emp_name,
Emp_Join_Time,
Month(Emp_Join_Time) as Month
From...............
If u do like this ,u ll get as u want
Regards,
Nagarjuna
Hi,
Try like this
Data:
LOAD
*
Month(DateFieldName) AS Month;
SELECT
*
FROM tableName;
Now use Month as Listbox.
Regards,
Jagan.
Table1:
LOAD
Month(Date#((database field month name here),'yyyy-mm-dd' ) as the_month;
SELECT
"database field month name here"
from tableName;