I am going to make some assumptions, as you didn't provide quite enough information for a proper answer.
I'm assuming that you want an integer returned that represents the number of the week of the year from 1 to 52.
Actually, I didn't even know it, but this is an easy one. I have quoted the help file for the date/time codes for the function "format date/time string".
%U week number of the year (00 - 53), with the first Sunday as the first day of week one
So, if you add "%U" to your format string, you can get the week number.
That should do it for you. Let me know if you have any trouble using the function.