Week number for Financial year 1/07/2018 to 30/06/2019

everblazing

Board Regular
Joined
Sep 18, 2015
Messages
156
Hi

In column A I have dates, in column B i am trying to find the week number for that date. I am referring to the date as the Australian financial year. Considering the 1st of July is the start of year. so if cell A10 is 9/07/2018, In B10 i should have 2.

I appreciate any assistance.

Regards
Lucas
 
Last edited:

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
try this formula in B2

Code:
=IF(DATE(0,MONTH(A10),DAY(A10))<183,QUOTIENT((A10-DATE(YEAR(A10)-1,7,1)+7),7),QUOTIENT((A10-DATE(YEAR(A10),7,1)+7),7))

hope that worked

edit: i meant cell B10, not B2
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,922
Messages
6,122,281
Members
449,075
Latest member
staticfluids

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