number of weeks into the quarter

dell_dude

New Member
Joined
Sep 20, 2011
Messages
4
i'm trying to create a formula which calculates number of weeks into the quarter.

for example, the quarter starts
1/26/2011 Q1
4/26/2011 Q2
7/26/2011 Q3
10/26/2011 Q4

and based on today's date, it would tell me how many weeks i'm into the Q. (each Q is 13 weeks)
ex. today is 9/20/2011 (i'm 8.14 weeks into this quarter).

does anyone know the formula for this without using macros.
Thanks,
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
Hi,

based on below scenario, I get exactly 8 weeks (56 days between 9/20/2011 & 26/7/2011)

Assuming Dates & Quaters are in Col A & B & Todays date is in cell C1.

Maybe try:

=ROUND((C1-VLOOKUP(C1,A:B,1))/7,2)&" Weeks into "&VLOOKUP(C1,A:B,2)
 
Upvote 0
Dannyh1,

thanks for your quick reply. i think i figured it out using =if & =and & =date statements. i really don't want to use vlookup because this is only part of the formula..

Thanks again,
 
Upvote 0
Hi,

based on below scenario, I get exactly 8 weeks (56 days between 9/20/2011 & 26/7/2011)

Assuming Dates & Quaters are in Col A & B & Todays date is in cell C1.

Maybe try:

=ROUND((C1-VLOOKUP(C1,A:B,1))/7,2)&" Weeks into "&VLOOKUP(C1,A:B,2)

for some reason, i'm having problems with dates that range from 1/1/2011 - 1/24/2011.
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,324
Members
452,635
Latest member
laura12345

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