First day of the week and the calendar week

muuvmuuv

I've to do a bit calc work and need to know how I can get the first day of the current week and the calendar week. It's for my training certificate.

Example sheet

muuvmuuv

Thanks to @Bathsheba, @AxelRichter and more.

The function depends on which language you have set in Open Office. In my OO its german so I'll let my calculation for the first and last day of a work week here:

Monday: =DATUM(JAHR(HEUTE());MONAT(HEUTE());TAGEIMMONAT(MONAT(12)) - ( TAG(HEUTE()) - WOCHENTAG(HEUTE();2)) )

Friday: =DATUM(JAHR(HEUTE());MONAT(HEUTE());TAGEIMMONAT(MONAT(12)) - ( TAG(HEUTE()) - WOCHENTAG(HEUTE();2) - 4) )

So you just have to translate into your language. Hope this helps others too.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

Changing first day of the week in PrimeFaces calendar

Set sunday as first day of the week in Unity calendar

Calendar first day of the week fromat in IE

Display the first and last day of a (calendar) week

Get the week of year, with sunday as the first day of the week using java calendar

How to set Monday as the first day of the week in GNOME Calendar applet?

How to set the first day of the week in System tray calendar?

How to change first day of week in Kendo react UI calendar library

First Day of the Week Postgres

Android Calendar problem with day of the week

Calendar giving wrong day of week

MySQL week number with specific first day of the week

First day of week (beginning with Sunday)

Getting the date of the first day of the week

Joda Time: First day of week?

What is the first day of the week in crontab?

set Monday is first day of week

Adding notes to full calendar day and week view

PHP calendar showing dates on the right day of the week

Java : Get any day in a week from Calendar

Calendar.DAY_OF_WEEK is not working for next month

JAVA Calendar range with time and day of week

Calendar for iOS with week, day and month view

Android Calendar : Changing the start day of week to Saturday

Getting only the data from the first day of the week to the current day of the week

How to set first day of week and last day of week to be white colour?

Printing calendar starting from the first day of the week based on locale using java.time/Java-8

Calendar different first week of year on local machine

What is the difference between Calendar.WEEK_OF_MONTH and Calendar.DAY_OF_WEEK_IN_MONTH in Java's Calendar class?