Adding a the 0 before single digit dates

Hi fellow TEers!

I have a snippet that helps me file documents that I get regularly via email. I copy the subject, click to save the attachment. Then in the file dialog window I use the snippet that adds a date, then the clipboard. Works beautifully.

However during the single digit months and days I was hoping to add a 0 before. So instead of “2026 2 8”, I have “2026 02 08”. Any suggestions on how I might be able to achieve this? Screenshot of my current snippet.

In the calendar macro, use (month 01) and (day 01) instead of (month 1) and (day 1)

1 Like

OMG I can’t believe I didn’t notice that. That’s rather embarrassing. Thanks for pointing it out.