Forum Discussion
ilker_d
Jun 06, 2019Copper Contributor
Deduct week numbers in Excel
I want to deduct week numbers in Excel but I don't know the formula (it should be something easy but I don't know)
For example in cell A1 I have 01.2019 (so this mean week 1 from 2019) and I want to have in cell B1 minus 52 week numbers from the data in A1 (so I should get 01.2018).
What should be the formula in cell B1 ? (Something like =A1-52?)
I hope that someone can help me with this
Thanks in advance
Regards, Ilker
7 Replies
- SergeiBaklanDiamond Contributor
Hi Ilker,
With data like this
assuming you keep Week.Year as text, formula could be
=(MOD(INT(A2)+B2-1,52)+1) &"."& (MOD(A2,1)*10000+INT(B2/52))
- Elias2000Copper Contributor
I think in the first place knowing the networking days by inserting the formula =Networking days(Start date,end date) after that it is easy to know the week day
- TwifooSilver ContributorYour formula could be:
=A1-7*52