florian86
Goto Top

Word Formel Monat -1

Hallo,

ich habe folgende Formel im Word 2016

{ = ({ date \@ "MMMM" } -1) }

jetzt bringt mir diese nach dem aktualisieren folgenden Fehler...

!Textmarke nicht definiert, NOVEMBER

Ich möchte einfach nur den aktuellen Monat -1 anzeigen lassen.

MfG

Florian

Content-ID: 392454

Url: https://administrator.de/contentid/392454

Ausgedruckt am: 19.11.2024 um 17:11 Uhr

137808
Lösung 137808 12.11.2018 aktualisiert um 11:56:36 Uhr
Goto Top
From "strings" like "november" you cannot subtract a number... face-wink.
{ ={DATE \@ "MM"}-1 }  
Florian86
Florian86 12.11.2018 um 12:09:43 Uhr
Goto Top
Ist es als VBA Lösbar?
137808
137808 12.11.2018, aktualisiert am 13.11.2018 um 10:05:26 Uhr
Goto Top
Sure.

Just create a bookmark name it according to your needs modify it in the code below) and set the contents of it to your date calculation
ActiveDocument.Bookmarks("my_custom_marker").Range.Text = Format(DateAdd("m", -1, Date), "MMMM")