15 days from today - insert the date anywhere with a keyboard shortcut
Dynamically insert the date 15 days from today anywhere on the web using a keyboard shortcut
Calculating the date 15 days from today takes time and is error-prone. Use the Text Blaze snippets below to save you time and avoid mistakes when typing the date 15 days from today anywhere on the web.
15 days from today
Insert this Text Blaze snippet anywhere using a keyboard shortcut and it will type the date 15 days from today.
You can change the format in which the date is presented.
15 days from today. Full date format
{time: MMMM Do YYYY; shift=+15D}
_
The following snippet, uses a different date format:
15 days from today. Alternative date format
{time: MM/DD/YYYY; shift=+15D}
_
Maybe you just want to know what day of the week will be in 15 days:
15 days from today. Just the day
{time: dddd; shift=+15D}
_
Any number of days from today (not just 15)
Use this snippet to dynamically calculate the date x days from today.
x is defined by you when you insert the snippet.
x days from today
{formtext: name=x; default=15} days from today will be {time: MMM Do, YYYY; shift=+{=x}D}
_
Any number of days from any date (not just today)
But why stop there? If you need to calculate the date x days from any date, you can do that easily as well.
x days from a given date
{formtext: name=x; default=15} days from {formdate: YYYY-MM-DD; name=date} will be {time: MMM Do, YYYY; shift=+{=x}D; at={=date}}
_