Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
richard_chilvers
Specialist
Specialist

Dates in a week

I have a report comparing performance between 2 different weeks.

I allow the 2 weeks to be selected in format YYYYww.

Once selected, I would like to display the date range for the week selected eg.

2015 04 would have the range 25Jan2015 - 31Jan2015.

Any neat ideas how to do this ?

Thanks

Richard

1 Solution

Accepted Solutions
Colin-Albert

Try

= WeekStart(DateField) & ' - ' & WeekEnd(DateField)


View solution in original post

3 Replies
Colin-Albert

Try

= WeekStart(DateField) & ' - ' & WeekEnd(DateField)


Anonymous
Not applicable

Are these weeks normal calender weeks - if so above comment should work

richard_chilvers
Specialist
Specialist
Author

Thanks.

I felt sure someone would have a neat solution - I just need to sort out the formatting of DateField and it will be ideal.

Richard