If you do something manually every day, it’s usually a good candidate for automation. I was creating a new OneNote page every morning—and it quickly became something I knew I could automate.
The Problem: A Repetitive Manual Task
Building the Flow
What I Wanted to Achieve
- The date in the title
- Section for Highlight (priority task)
- Section on Yesterday (What I was working on yesterday)
- Section on Today (What I will work on today)
- Section on Start of Day checklist (with a number of checkbox fields)
- Section on Working area
- Section on End of Day checklist (with a number of checkbox fields)
The Problems I Hit
I encountered three problems when creating this flow, but I was able to overcome them.1. Getting it to run Monday to Friday
The controls in Power Automate give you the option to set a frequency for your flow, and my initial idea was to set it to "once per day". However, this would include weekends, which I didn't want. After thinking for a bit, I figured out that I could set the frequency to "Weeks interval 1" and then choose which days of the week to include. It wasn't very intuitive, but I was able to figure it out.2. Adding the date to the title
In the OneNote "Create a page in section" block, there wasn't a setting to enter a title. It only had a text entry for any template text you want on the page. After some trial and error, I discovered that I could switch the text entry to HTML and enter a full HTML page into the editor. Using the <title> tag within <head>, I was able to automate the title. I then added the formatDateTime function, which allowed me to get the title to be today's date in a long format.3. Adding checkboxes
I really wanted to have checkboxes to check off my day start and end routines, but I couldn't figure out how to add checkboxes into the HTML. After some Googling, I found the data-tag="to-do" attribute, which gave me exactly what I was looking for. I added this attribute to the <p> tags in the Start of Day and End of Day sections, and it created checkboxes in OneNote.What Actually Worked
The Bigger Pattern
Where This Shows Up
- The Joy of Fixing — understanding systems by working through problems
- Visual Thinking — how I naturally break systems down
What This Means
Small automations can remove a surprising amount of friction from everyday work.
I spend a lot of time simplifying and automating processes to make systems easier to use and maintain.
You can take a look at my TechFix service if you’ve got something repetitive that should be simpler.







