Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi All,
I have a requirement, where in i should show week number extracting from year field.
In detail, week(year) should have list of 52 or 53 weeks of that particular year.
If i select, 2014, feb, week should display 5,6,7.
Quick response is appreciated.
Thanks in advance,
Smitha
From this you get week
Week(YourDateField) as Week
Correct way is use Datefield for the different date field creation like
Year(YourDateField) as Year,
Month(YourDateField) as Month,
Week(YourDateField) as Week
Num(Month(YourDateField)) as NumMonth,
'Q' & ceil(month(YourDateField) / 3) as Quarter
and so on
From this you get week
Week(YourDateField) as Week
Correct way is use Datefield for the different date field creation like
Year(YourDateField) as Year,
Month(YourDateField) as Month,
Week(YourDateField) as Week
Num(Month(YourDateField)) as NumMonth,
'Q' & ceil(month(YourDateField) / 3) as Quarter
and so on
Add below in your script...
Week(DateField) as Week
Try
Week(Date) as Week
Thank you ☺
thanks☺
Thanks☺
Close the thread by selecting correct/helpful answer.
Hi,
If you got correct answer so mark the thread as correct for the reference for others.
Regards