I'm trying to create a report where i only see records with End Date = this week.
(so not 'the coming 7 days' or something, only this week#)
I have column 'Week# that shows the week# of the field 'End Date' in my sheet
=ROUND((([End Date]1 - DATE(2015, 1, 1)) / 7) + 0.49, 0)
in my report I defined in the 'What' part:
[Week#] is equal to [=ROUND(((today() - DATE(2015, 1, 1)) / 7) + 0.49, 0)]
(so if today is week number 32, i only expected rows with an End Date in the current week)
no result 