Hi , i have date column and i want to create a column which groups the dates with respect to week...
For eg...
Date Column
Ã, 16/1/2005
Ã, 17/1/2005
Ã, 18/1/2005
Ã, 19/1/2005
Ã, 20/1/2005
Ã, 21/1/2005
Ã, 22/1/2005
Ã, 23/1/2005
Ã, 24/1/2005
Ã, 25/1/2005
Ã, 26/1/2005
Ã, 27/1/2005
Ã, 28/1/2005
Ã, 29/1/2005
Ã, 30/1/2005
Ã, 31/1/2005
Now i want the new column of this sort to be calculated in RS itself...
Date ColumnÃ, Ã, Ã, Ã, New Column
Ã, 16/1/2005Ã, Ã, Ã, Ã, Ã, 16/1/2005
Ã, 17/1/2005Ã, Ã, Ã, Ã, Ã, 16/1/2005
Ã, 18/1/2005Ã, Ã, Ã, Ã, Ã, 16/1/2005
Ã, 19/1/2005Ã, Ã, Ã, Ã, Ã, 16/1/2005
Ã, 20/1/2005Ã, Ã, Ã, Ã, Ã, 16/1/2005
Ã, 21/1/2005Ã, Ã, Ã, Ã, Ã, 16/1/2005
Ã, 22/1/2005Ã, Ã, Ã, Ã, Ã, 16/1/2005
Ã, 23/1/2005Ã, Ã, Ã, Ã, Ã, 16/1/2005
Ã, 24/1/2005Ã, Ã, Ã, Ã, Ã, 24/1/2005
Ã, 25/1/2005Ã, Ã, Ã, Ã, Ã, 24/1/2005
Ã, 26/1/2005Ã, Ã, Ã, Ã, Ã, 24/1/2005
Ã, 27/1/2005Ã, Ã, Ã, Ã, Ã, 24/1/2005
Ã, 28/1/2005Ã, Ã, Ã, Ã, Ã, 24/1/2005
Ã, 29/1/2005Ã, Ã, Ã, Ã, Ã, 24/1/2005
Ã, 30/1/2005Ã, Ã, Ã, Ã, Ã, 24/1/2005
Ã, 31/1/2005Ã, Ã, Ã, Ã, Ã, 24/1/2005
How should i do this....
Srik
BSrik,
Add calculation Year:
year(<date>)
Add calculation Week:
_week_of_year(2005-09-16)
Add your Date
Group on Year, Week
that's all
[Thanks]
solved