Year number of week 53

Ramballah

Active Member
Joined
Sep 25, 2018
Messages
311
Office Version
  1. 365
Platform
  1. Windows
Hi Everyone,

I use a formula that shows yearnumber/weeknumber of a date i get in column A
However I noticed that it goes wrong with the year number.
1601460054338.png

See the image above ^:
I need this to be 2020/53 since in column C i am using a VLookup function that searches for 2020/53.
B5 = =CONCATENATE(YEAR(A5);"/";WEEKNUM(A5;21))
I hope I informed you guys enough.

Thanks in advance,
Ram
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
This should work but may cause issues if you roll to future years

=CONCATENATE(YEAR(A5-1);"/";WEEKNUM(A5;21))
 
Upvote 0
This should work but may cause issues if you roll to future years

=CONCATENATE(YEAR(A5-1);"/";WEEKNUM(A5;21))
Sorry but this didn't help at all. EDIT: nothing changed
 
Upvote 0
How about
Excel Formula:
=CONCATENATE(YEAR(IF(WEEKNUM(A2,21)>=52,EDATE(A2,-1),A2)),"/",WEEKNUM(A2,21))
 
Upvote 0
Does this work...
Excel Formula:
=YEAR(A1)-(WEEKNUM(A1,21)>52)&"/"&WEEKNUM(A1,21)
 
Upvote 0
... I noticed that it goes wrong with the year number...
Will not you have a similar issue with some December dates as well? E.g., shouldn't 29-Dec-2025 be converted into "2026/1"?

Try the following formula -- it should work for any date:
Excel Formula:
=YEAR(A1-WEEKDAY(A1,3)+3)&"/"&WEEKNUM(A1,21)
 
Upvote 0
is that what you want?
DateDateYW
11/12/202011/12/20202020/50
18/12/202018/12/20202020/51
25/12/202025/12/20202020/52
01/01/202101/01/20212021/53
30/12/202130/12/20212021/53

post more representative example with expected result. use XL2BB to do that
 
Upvote 0

Forum statistics

Threads
1,214,429
Messages
6,119,435
Members
448,898
Latest member
dukenia71

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