Formula for week number with month

aryanaveen

Board Regular
Joined
Jan 5, 2015
Messages
104
Hi All

is there a way to get week number for the month along with month name in excel using the formula

For Ex if Column A has date 30/Jan/2022 then in column B I need this date to appear in format "Jan week 5"
and if the date is 2/Feb/2022 then it should update as "Feb week 1"
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Try

Excel Formula:
=TEXT(A1,"mmm")&" Week "&INT((DAY(A1-1)/7)+1)
 
Upvote 0
Hi,

You can test
Excel Formula:
=TEXT(A10,"mmm")&" week "&WEEKNUM(A10)
 
Upvote 0
weeknum() or ISOweeknum()

2/feb/2022

=TEXT(A2,"mmm")&" week "&WEEKNUM(A2)
or if you have a later version of excel
=TEXTJOIN(" ",,TEXT(MONTH(A2),"mmm"),"week",B2)

Cell Formulas
RangeFormula
B2:B12B2=WEEKNUM(A2)
C2:C12C2=ISOWEEKNUM(A2)
E2:E12E2=TEXTJOIN(" ",,TEXT(MONTH(A2),"mmm"),"week",B2)
G2:G12G2=TEXT(A2,"mmm")&" week "&WEEKNUM(A2)
 
Upvote 0
Book2
AB
129-Jan-22Jan week 5
205-Feb-22Feb week 1
Sheet1
Cell Formulas
RangeFormula
B1:B2B1=TEXT(A1,"mmm") & " week " & WEEKNUM(A1,1)-WEEKNUM(DATE(YEAR(A1),MONTH(A1),1),1)+1
 
Upvote 0
If the 1st of the month is always week 1 how about
Excel Formula:
=TEXT(A1,"mmm ""week """)&INT((DAY(A1)-1)/7)+1
 
Upvote 0

Forum statistics

Threads
1,214,638
Messages
6,120,676
Members
448,977
Latest member
moonlight6

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