Question

I have several dates in a spreadsheet:

enter image description here

I would like to get the weeknumber in the column B for the date in column C in european time.

I tried something like that(and also that above):

= MID(TEXT(C2,"dd.m.yyyy"), 3, 2)

However that only gives me .2 in the B column...

Any suggestions on how to implement/start that?

I really appreciate your answer!

PS.: I also added excel tags because its similar to google spreadsheet. There is probably a chance that I can implement something from excel in google spreadsheet

Was it helpful?

Solution

in excel for get week number use

=WEEKNUM(C2)

OTHER TIPS

Use the following formula

WeekDay(c2)

It will return the week day number.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top