Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How to get 2nd week from Calender?
I required expression for it.
if you are looking for date range from a Date field, you can try the following expression in an expression of list box:
=
If(week(YourDateField)=2,YouDateDate)try this
if(week(Date(datefield))=2,Date(datefield)).
suppose today date is 14/06/2013 and its week is 24.
if(week(today())=24,week(today())).