Hi I am running an update query to update 2 fields in a table, field 1 is an average of 2 of the other fields in table and the 2nd field is to update the week number number field.
This seems to working ok, but I would like week 1 to begin on monday 27th February 2012 not on the 1st january.
Is there away to achive this?
I have attached a screenshot of the query
The sql view of the query is
Thanks in advance for any help on this
This seems to working ok, but I would like week 1 to begin on monday 27th February 2012 not on the 1st january.
Is there away to achive this?
I have attached a screenshot of the query
The sql view of the query is
UPDATE tblMainData SET tblMainData.TtlAvg = ([totalin]+[totalout])/2, tblMainData.WeekNo = DatePart("ww",[rkddate]);
Thanks in advance for any help on this