Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi am having week object as below'
But i need to show week1,week2,week3,week4,week5 ,if i click on week1 it reflects the calender
Hi,
Try like this
Data:
LOAD
*,
Month(Date) AS Month,
'Week' & Ceil(Day(Date)/7) AS WeekInMonth
From DataSource;
Hope this helps you.
Regards,
Jagan.
Go to listbox property and type expression as
='Week' & YourFieldName
HI
Try like this
In Script,
'week' & Week(DateFieldName) as Week
Thanks! The o/p is as below after using the logic suggested by you
But its not the requirement i have only five weeks as week1,week2,week3,week4,week5 suppose if the user make moth selection with in the month usere wants to know third week sales means week3 sales
Hi,
Try like this
Data:
LOAD
*,
Month(Date) AS Month,
'Week' & Ceil(Day(Date)/7) AS WeekInMonth
From DataSource;
Hope this helps you.
Regards,
Jagan.
Hi
Are you looking something like this
'Week' & Ceil(Day(DateID) /7) AS Week