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
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
Bitte markiere auch die Kommentare, die zur Lösung des Beitrags beigetragen haben
Content-ID: 392454
Url: https://administrator.de/forum/word-formel-monat-1-392454.html
Ausgedruckt am: 23.12.2024 um 16:12 Uhr
3 Kommentare
Neuester Kommentar
From "strings" like "november" you cannot subtract a number... .
{ ={DATE \@ "MM"}-1 }
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
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")