Another post on maintaining a manual calendar in Dynalist

I have spoken previously here about the merits of maintaining a dual-automated-manual calendar in Dynalist (rather than e.g. a google calendar). A dual manual-time-stamp calendar in Dynalist (and a crucial macro)

Here I outline a fully-manual calendar, using date tags instead of dynalist time stamps (this is my preference if you can work ONLY within dynalist - the dual-automated-manual version allows you to use google calendar to see your schedule on your phone - stay tuned for a future post on the values of a dynalist-dedicated ‘second phone’ :))

One of the issues with this manual calendar is that you have to make it yourself. However, below I show an excel file which can make this a breeze (I can’t attach it here unfortunately). The only slightly less-known function used here I think is the & function which ‘sews’ multiple cells together

Here’s the formula for the final cell:

All you have to do is fill in the month column (and year, but … only annually ;)) and type in the first day of the month (e.g. thursday for june this year) you are creating then use auto-fill. Following this you copy the tags that are generated to the far right up to the number of days in that month (30 in june) and just paste straight into Dynalist:

I like to make them all heading three, and I use blue for weekdays and purple for the weekend, which makes it easier to visually scan.

And after a bit of filling in looks something like this (I use @ tags for times):

This is an incredibly flexible system, which you can do so much with and customise to the way your life works to an unlimited extent (this freedom is what I love over a more traditional digital calendar). I put my projects with deadlines right on my calendar, and thrash meeting notes out there too. I file each day away in a ‘Past’ document, which I regularly use as a rich resource of information on my past life.

The reason I prefer date tags over using dynalist date stamps are:

  1. This frees up those date stamps for other things.
  2. Date tags provide much more flexibility for searching for a specific day, or ‘moving thing’ (E.g. tasks) to specific days when you don’t know the precise date (almost always the case for me) … e.g. If I know I want to move something to next wednesday (but don’t know the date of that day) I can bring up the move dialogue and type in #Wed #June and it will only bring up ~four options (the four wednesdays in june) (This is also the reason I have the tags in the order they are in - so that the day and month are next to each other for more accurate searching) - ditto for searching your ‘past’ document e.g. ‘Now what happened in that meeting last month - I think it was on a tuesday, or I know it was on the 4th’.

PS. Macros to move an item to e.g. two days from now etc is of course very doable with phrase express on this system also.

Enjoy!

6 Likes

I like it :slight_smile:
For quicker generation: https://jsfiddle.net/wkew42ff/1/
update this line “let month = 6;” with month you want and press “run” in top left corner
If someone wants different language - click on “External Resources” (left column) and paste link to you locale (taken from https://cdnjs.com/libraries/moment.js/ ) and click enter. Now you can run and you will see results in your language. You can then click update (top left corner), this will generate new url with your changes - you can add it to bookmarks. It can also be embedded as iframe into Dynalist.
Other formats to use with this script https://momentjs.com/docs/#/displaying/format/ (I like to have also number of week (ww) and full day name (dddd))

4 Likes

I like the flexibility. When I incorporate into my standard date setup it allows more thorough searches…For example today is #Wed #170607…if I want to see all Wednesdays, search = #Wed…all Wednesdays in 2017 = #Wed #17…all Wednesdays in June 2017 = #Wed #1706…etc… thanks for a brilliant tip

1 Like

thanks for this tip…im getting to learn how people use it so this is helpful.

what is the purpose of having the column of may if the final output shows june?

To generate a consecutive list of equal numbers that advance by one after a certain repetition (e.g. for week numbering, which can be really helpful for weekly reviews), you can use this little excel formula trick:

  • for series of 6 in column :
    • enter the same number as often as desired for repetition
    • go to the next field (here:A7)
    • enter the formula <=IF(A6=A1;A6+1;A6)>
    • extend the formula down (using the lower right black cross) to as many entries you like
      see also here: https://www.youtube.com/watch?v=zpRhHmhIAJI
1 Like