DateAdd + week number not matching

oni1983

New Member
Joined
Jul 9, 2015
Messages
25
I am currently trying to convert a number of dates to week number by using DatePart([“ww”],[1 Visit],[vbMonday],[vbFirstFullWeek]).

[1 Visit] is the name of the field where the dates to be converted are. As you may note, as soon as I write the code [] appear next to vbMonday and vbFirstFullWeek and it's not working.

Can someone help?
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Hi, Don't put brackets around vbMonday or vbFirstFullWeek (or for that matter around "ww"). Brackets go around field names and table names. Plus, these named constants will only work if you are using the expression in a vb function or sub (in the code window).

It looks like it does work if you use the integer values for the constants:
DatePart(“ww”,[1 Visit], 2, 3)

for the values of the named constants see: MS Access: DatePart Function
 
Upvote 0

Forum statistics

Threads
1,221,831
Messages
6,162,242
Members
451,756
Latest member
tommyw

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top