Friday, March 13, 2026

Why vbNewLine Doesn't Work in Microsoft Access Rich Text Fields (And the Simple Fix) - QQ #83

If you've ever tried to drop a new line into a rich text box with VBA, only to have your carefully crafted message stubbornly display as a single continuous line, you're not alone. This little annoyance - and several other quirky Microsoft Access tips - are what we're diving into today. Whether you're confused about barcode scanning data, the elusive two-gigabyte database cap, or when to use refresh versus repaint, let's settle the score and keep your Access projects running smoothly.

Let's get straight to the problem that's tripped up many Access users: why do those VB new line codes (like CHR(10), CHR(13), or VBCRLF) work perfectly in plain text boxes, but not in rich text? If you're inserting text into a rich text (formatted) control, you probably expect line breaks where you put them. Instead, your masterpiece looks like a run-on sentence. This happens because, while plain text understands a carriage return or line feed, rich text expects HTML-style formatting. In other words, Access is really expecting a "<br>" tag instead of the old-school new line codes.

So here's what you need to remember: if you want your rich text box to respect line breaks, construct your string with "<br>" where you want those breaks to appear. For example, instead of sending:

(For the VBA code needed, check out the video above!)

access status box = "Hi" & [VB New Line] & "Richard" simply won't cut it. In rich text, swap in "Hi<br>Richard" and your text will finally display the way you want. Bonus - you can even toss in a little color or bold with other HTML tags, since Access supports a decent subset of HTML formatting. Want to get fancier? Time to brush up on your basics; I've got a free HTML 101 class on my website if you're curious (fair warning: the audio is vintage 2002, but the HTML info is still solid!).

This lesson about barcodes and new line characters is just one real-world scenario. If you're scanning barcodes into Access (like driver's licenses), don't try to parse information by fixed character positions. Standards change and data fields may shift. Instead, always search for the field identifiers within the scanned data. That way, you can reliably extract data - like birth dates - no matter what state or barcode format you're dealing with. For specifics and examples, you'll want to check the video or relevant forum threads linked on my site; my community has some sharp folks who've hashed out great solutions there.

While we're on little-known tricks, here's a gem for navigating your forms: the SelTop property. Instead of always using DoCmd.GoToRecord (those commas can get unwieldy), SelTop lets you directly set which row sits at the top of your form or datasheet view. Pair it with SelHeight to select multiple rows at once. It's a bit of an old-school feature, but every tool has its place, and sometimes the classics still deliver.

If you're wrestling with modern chart controls in Access, you've likely noticed that keeping month names sorted in calendar order (rather than alphabetically) can be a challenge. Including a numeric month field in your data source keeps them in line - but unfortunately, you can't easily hide that number from your chart labels. Workarounds involve sometimes messy data reshaping, or you can set up your data and use queries to sort months by number while only displaying the names. But let's be honest: for serious charting, exporting to Excel still offers a lot more power and flexibility than Access' native tools.

If your use case is pushing the two-gigabyte database file size, here's the real deal: the limit applies to each .accdb file, not your whole application. You can easily split data into multiple backend files - customers, orders, and contacts, for example - each getting their own allotted space. Hitting the cap almost always happens when inserting huge binary objects or attachments (think images or music), not from regular data. Don't jam your database full of MP3s; keep binary blobs in the file system where they belong!

On the topic of refreshing and repainting: hitting Me.Refresh in VBA is great for reloading data from the table, but won't update how your form looks (like special effects or border changes). For that, Me.Repaint is the go-to. Always place your appearance-changing code in the right form event (usually AfterUpdate or OnCurrent), then call Repaint to force Access to redraw those updates instantly. If you try to force data and display changes with the same command, you'll be left wondering why your form is lagging behind your expectations.

Another flexible tip: list boxes versus subforms for filtering records. Subforms are perfect for letting users manipulate and view related data, but don't overlook list boxes - especially with Multi-Select enabled - for letting your users pick multiple filter criteria at once. This does require a little VBA magic; you'll need to loop through selections and dynamically filter your data, but I cover exactly how to do that in some of my advanced lessons.

If you're still running a 32-bit version of Access because you depend on an old ActiveX control (maybe for serial devices or barcode input), I feel your pain. Sometimes legacy equipment or software just won't make the jump to 64-bit, and that's OK for a transition period. Eventually, it's best to switch to modern alternatives, but in the meantime, back up everything religiously and keep good notes for your future self - or the next developer who inherits your system.

Finally, let's not forget many-to-many relationships, filtering strategies, and other data design questions. In practice, the true "magic" of database design happens in your queries and forms. While showing a concept in a quick video, I'll often skip the deep-dive on building all the queries and relationships - that's where my full courses come in. I prefer building logic right in queries or front-end code, enforcing only the system relationships that are truly necessary for data integrity. Sometimes giving your design a little breathing room (instead of rigid system relationships) pays off, especially for complex or evolving projects.

We covered a lot today, but here are the big takeaways: use "<br>" tags for line breaks in rich text; remember SelTop and SelHeight for fast record navigation in forms; modern charts might need numeric keys to sort months properly; use repaint, not refresh, to immediately update visual effects; split backend files to beat the 2GB limit; and don't be afraid of using some light VBA to give your users richer interaction with their data.

There's always more to learn, and if you want the step-by-step walk-through (or the nitty-gritty VBA code), just watch the video embedded above. If you have a question or a trick for Access you'd like to see covered in future Quick Queries, post a comment below. Don't forget to subscribe for more free tips, and check out my site for a deeper dive on any of these topics. See you next time - and don't forget to enjoy your weekend!

Live long and prosper,
RR

Ready to Move Your Microsoft Access Database Up to the Big Leagues?

If you've ever hit the wall with Microsoft Access - maybe your database slowed to a crawl, multi-user issues cropped up, or security became a headache - then it's time to look at stepping up your game with SQL Server. As your databases grow and your user base expands, using SQL Server as a backend can eliminate a boatload of headaches and future-proof your Access applications. Let's dig into how SQL Server and Access make a powerful team - and why you don't have to throw out everything you know and love about Access.

Here's the deal: Access might be an awesome database tool, but it wasn't built to handle dozens of people pounding on the same .ACCDB file at once. Queries get sluggish, you run into locking problems, and reports take ages to crunch through mountains of data. That's where SQL Server comes in. With SQL Server running on a dedicated database server, all the heavy lifting and data crunching gets done on the server itself. Access becomes lighter, faster, and your network traffic drops because you're only sending results, not dragging every row back and forth over a wire. Sounds pretty good, right?

Another huge win is security. When you keep your Access backend on a shared folder, anyone with network access could - in theory - copy your data, delete it, or accidentally mangle something. With SQL Server, you've got much more granular control: user logins, permissions, and built-in tools to help protect sensitive information. Plus, data corruption is a whole lot less likely on a real database server.

Here's an important thing to understand: SQL Server isn't a replacement for Access. It's not going to take over your forms, reports, or all that user interface stuff you've built. SQL Server is just the engine under the hood. Access stays your front end, handling everything your users see and do. If you've spent years building and tweaking your Access projects, you don't have to throw them away - you're just adding some rocket fuel underneath.

I designed this course (and this article) specifically for folks who already know their way around Access. You should already be comfortable with tables, queries, forms, and reports, and ideally you'll understand what a split database is - where the Access front end lives on each user's machine and the backend hides on a shared network location. If you're shaky on those concepts, you might want to brush up before diving in. Some basic networking know-how and a working knowledge of SQL (at least enough to recognize a SELECT query) will make things a lot easier as well.

In most office settings, SQL Server runs on one machine somewhere in the building, and everyone connects to it over their local network. I'm not talking about the cloud here, just your average business down the hall or across the cubicles. You'll want to be comfortable with networking basics and file sharing concepts before you go to hook things up.

The best part? Nearly all the tools we're going to use are free. Microsoft SQL Server Express and the SQL Server Management Studio (SSMS) are both free to download and install. Of course, you'll need your own copy of Microsoft Access - ideally from a Microsoft 365 subscription (so it auto-updates), but the latest standalone versions like Access 2024 will also do the trick. As long as you've got something newer than Access 2007, you're in good shape. Seriously, if you're still running Access 2003… it's time, my friend. I loved it too, but let it go.

Here's a quick roadmap of what you'll learn if you follow along step-by-step:

- You'll start by grasping the big-picture concept of combining Access with SQL Server, and why that's a smarter move than you might think.
- Next up, we'll walk through downloading and installing SQL Server Express and SSMS - no fancy servers required.
- You'll get oriented to the SQL Server environment, learn its lingo (servers, instances, databases, oh my), and see your first server-side database.
- We'll build real tables, set up keys and data types (including some data-type tips specifically for you Access users), and import sample data.
- You'll figure out how to get Access and SQL Server talking over your network, including the gotchas with authentication and the differences between local and Microsoft accounts.
- By the end, you'll link Access to SQL Server using ODBC, build server-side queries (views), and sidestep the usual syntax pitfalls when moving from Access SQL to T-SQL.
- We'll wrap things up with a Q&A on common real-world issues like connection strings, security, performance, and clearing up any lingering Access-vs-SQL confusion.

Throughout, I'll show you how SQL Server boosts the security, stability, and speed of your database without losing the Access interface you've carefully crafted for your users.

By the time you finish, you'll understand how SQL Server fits into the world of Access development, how to set it up, how to build and manage tables and queries on the server, and - most importantly - how to connect your Access database to a SQL Server backend.

Ready to bring your Access skills to the next level? Dive into lesson one (watch the video above if you want the full walkthrough), and let's get started!

Live long and prosper,
RR

Thursday, March 12, 2026

The Case Against Phone Calls

I had one of those customer conversations today that reminded me why my no-phone-calls rule exists. Nice guy. Perfectly polite at first. He had some questions about classes, which I'm always happy to help with. That's part of the job. If you need to know which course, lesson, or video covers the thing you want to learn, I'll absolutely point you in the right direction. But then the conversation started drifting toward, "I've got some other questions about Access. Can I just call you? It'll only take three minutes."

Customer service and no-phone-calls policy discussion

No, sir. It won't only take three minutes. I know better.

There's no such thing as a three-minute phone call. That creature is as mythical as a stable Windows update, a perfect Access database on the first try, or a redshirt making it through the whole episode. I know this because I've spent years (decades!) in sales and consulting, and "just a quick call" is one of the oldest traps in the quadrant. Three minutes turns into ten. Ten turns into thirty. Then somehow we're discussing your database design, your printer, your nephew's laptop, and whether Mercury's in retrograde.

The bigger issue is that phone calls are wildly inefficient for the kind of work I do. Email gives me a written record. Forums let other people learn from the answer too. A forum post about a technical problem can help hundreds of students later. A phone call helps one person once, and then it's gone, like a probe launched into a black hole. If I spent my day answering technical questions by phone, I'd never record new lessons, or TechHelp videos, or update courses, or get anything done beyond saying, "Uh huh... right... OK... hang on..." for eight hours.

There's also the simple fact that I just don't like talking on the phone. Never have. Never will. I'm an internet business. I like written communication. I like being able to think before I reply. I like having specs in black and white so there's no later debate over who said what. "No, sir, you didn't say you wanted the button to make that Star Trek door opening whoosh sound when clicked." With email, I can go back and check. With a phone call, it turns into one more courtroom drama in the grand tradition of Starfleet bureaucracy.

And to be clear, this isn't me being rude or standoffish. It's me protecting the one resource every solo business owner eventually learns to guard with phasers set to maximum: time. When you're running a one-man operation, you can't let every incoming request turn into a live consultation. You've got to set boundaries or the day disappears. I'd rather spend that time making something useful for everybody than repeating the same answer twenty times on the phone to twenty different people.

So yes, sometimes people get frustrated when I say no. Today one of them did, and he chose not to buy anything from me because I wouldn't get on the phone. That's his right. No hard feelings. But my rule is still my rule. If you need customer service, email me. If you've got a technical question, post it in the forums. If you hate typing, use voice dictation and send the message that way. There are plenty of options in this century that don't involve a telephone.

The bottom line is simple: I'm not avoiding people. I'm avoiding inefficiency. I'd rather teach ten thousand people with one lesson than help one person with one phone call. That's how this ship runs. And if that means phone calls stay at the bottom of my contact list, somewhere below fax, smoke signals, and Starfleet subspace radio, so be it.

Live long and prosper... and please, send an email.
RR

LLAP
RR

Wednesday, March 11, 2026

How to Filter a Microsoft Access Subform With a Combo Box

Are you tired of hopping around to different forms in your database just to see when you last contacted a customer? If it seems like you're jumping through digital hoops just to get to your customer's history, let's make your life easier. Today, I'm going to show you how to streamline your workflow by setting up a form where you can instantly filter and view one customer's contact history - just by selecting their name from a combo box. Simple, fast, and no more wild goose chases.

The goal here is to give you one easy-to-use form. You pick a customer from a dropdown, and right below, you instantly see only that customer's contacts. This trick will cut out all the back-and-forth between forms, letting you focus on your customers, not your screen. And, yes, it's going to save you a ton of clicks and time - especially handy if you're always switching between different contacts all day long.

Let's dive in. For this demo, I'm using the TechHelp free template database, which you can grab from my website if you want to follow along. Normally, finding a customer's contacts might involve opening the customer form, searching for your person, and then launching the contacts form for their history. Functional, but far from efficient.

So, what's the trick? We're going to build what's called an "unbound parent form." Think of it as a blank canvas - with no inherent data - where you'll drop in a combo box linked to your customer table. You'll also drop in a subform that displays your contacts. When you pick a customer from the combo box, the subform magically filters to just their records.

To make this happen, you need a combo box populated with your customers. The best approach is to use a query that combines first and last names, so your dropdown list looks neat and is easy to search. You can use a concatenated field, like "LastName, FirstName," as the display value in your combo box. Go wild - make sure your combo box lists your customers alphabetically for quick access.

Once you've set up your combo box and subform, you need a way to connect them. There are two ways to approach this: a VBA-free method using "Link Master Fields" and "Link Child Fields" properties, and a slightly more advanced method with a tiny bit of VBA code. (Don't worry - it's literally two lines!)

If you're a non-programmer or just want something super quick: set the subform's Link Master Fields to reference your combo box (for example, "CustomerCombo") and Link Child Fields to the "CustomerID" in your contact records. With this setup, when you pick a customer, the subform filters accordingly. The drawback? The form will appear blank when first opened, since there's no customer selected yet. Also, you can't easily display all contacts at once if you need to switch between filtered and unfiltered views.

For more flexibility, a few lines of VBA comes to the rescue. Here's what you do: Head to your combo box's properties and tap into the "After Update" event. When that event fires (meaning whenever you pick a new customer), you set the subform's filter so it shows only contacts matching that selected customer. This lets you see everyone by default, then narrow it down instantly based on your choice. Want to review all contacts across all customers? Just clear the combo box filter. This VBA method is neat, professional, and gives you control for making future tweaks.

Just remember, naming matters! Make sure your subform control and your combo box have clear, unique names. Sometimes Access uses the form's caption in place of its actual name, which can break your code if you're not paying attention. Always double-check you're referencing the correct objects in your event properties.

As with most things in Access, there are always extra details to smooth out. For example, you'll want to handle scenarios where the user clears the combo box, or when adding a new contact while filtered - it's possible to end up with new records awkwardly unassociated with a customer. These special considerations, including tricks on how to decide where default values should come from, are covered in more detail for members in my extended cut video.

Want to take your database navigation to the next level? Consider diving into search and sorting videos as well as more advanced topics, like multi-select list boxes if you ever want to filter for multiple customers at once. The world of Access is big, and once you've mastered filtering with combo boxes and subforms, you'll wonder how you ever lived without it.

Remember, for a complete look at the actual VBA code and an in-depth walkthrough, check out the video embedded above. Whether you stick with the no-code method or tiptoe into VBA, this is a huge time-saver that adds real usability to your Access applications.

Live long and prosper,
RR

Tuesday, March 10, 2026

Answering Student Questions From SQL Server for Microsoft Access Users Beginner Level 1

Let's face it: when you start sharing Microsoft Access projects with others (or just get nosy about the "backend stuff"), it's only a matter of time before you wonder about SQL Server, authentication, or which combo box is about to make your hair go gray. In this lesson, I'm diving into some of the most common (and quirky) questions that have rolled in from students as we've progressed through Beginner Level One. Whether you're stuck on connection strings, confused over which edition of SQL Server to install, or just want to know if your Access forms are ever going to run faster, you'll find some solid answers here.

If you've been following along, you know there's no shortage of SQL Server editions and possible ways to connect Access to it. Sometimes, just picking Express or Developer feels like a pop quiz from Microsoft. But don't sweat it. We'll get right into why certain authentication methods are safer (and easier), how to keep your forms from loading like it's 1999, and a whole lot more. We'll break down real-world mistakes, practical tips, and a few myths along the way.

Let's kick things off with one of the most popular questions that's come up: passwords and authentication. Many folks wonder, "If SQL Server authentication isn't secure, why not use code to prompt for the password at runtime and never store it?" And yes, with some crafty VBA (see the video for code details), that's possible - you can keep credentials out of your database file entirely. The catch? This approach demands some real programming skills and custom login forms, so it's not what I recommend for beginners just getting their feet wet. For now, sticking with Windows authentication is simple, clean, and keeps your users' passwords where they belong - in Windows, not scattered inside your Access file.

Next up, let's clear the air on the jungle of SQL Server editions. The main differences boil down to cost, features, and what you actually need. SQL Server Express is free, easy to install, and perfect for learning or small office applications (think: up to 10GB per database, way more than Access could ever comfortably handle). Developer Edition is also free but is meant for, you guessed it, development - not production. Then you've got Standard and Enterprise for deep-pocketed corporations, and Azure SQL if you'd rather let Microsoft's cloud do your heavy lifting. For anyone following this course, Express is more than enough; you'll rarely hit its limits if you're comfortable with what Access already gives you.

I also get questions about the "Customer Since" field defaulting to DateTime2(7). That's just SQL Server flexing its accuracy muscles - seven decimals of seconds when, realistically, most of us just need a date. If you're only collecting a date, using the DATE type is fine. But keep in mind: Access naturally works with date and time together, and this sometimes leads to confusion, especially with filtering queries using BETWEEN. Remember, BETWEEN on a DateTime field is literal: it looks at both date and time, so if you want records through the end of a day, you need to specify the cutoff (see my video for more details on that gotcha).

What about running SQL Server on Linux or a NAS? Technically possible, but for most Access developers, Windows is where you're going to get the smoothest ride and best support. SQL Server is fundamentally a Windows service - don't expect to run it from a network drive or dump it onto a NAS. For small setups, even an older PC or laptop does fine as a dedicated SQL Server box. You don't need anything fancy, and most importantly... don't bother trying to future-proof. Technology moves fast and "future proof" just means "trust me, you'll upgrade this in a couple years anyway."

I often get asked why you'd use Access at all if SQL Server can handle your data. Simple: SQL Server is a backend. It stores, safeguards, and processes the data. It doesn't build front-end forms or reports or let your users click shiny buttons. That's where Access shines as your front end, handling all the user interface work while SQL Server does the heavy lifting in the background.

If you're a solo developer or just testing things out, Express or Developer Edition of SQL Server is plenty. No need to pay for the big enterprise cuts until you're sure you need those options. For eight or fewer users, even a modest, off-the-shelf PC with a solid state drive can act as the SQL Server host. 16GB of RAM, a decent CPU, that's it. SQL Server doesn't chew up nearly as many resources as you might think for these use cases.

What about SSD wear thanks to all those transaction logs? You might have heard that SQL Server constantly writing logs will burn out your SSD. Don't lose sleep over it - modern SSDs handle this level of activity just fine. And you should never turn off transaction logging, as it's critical for data integrity and recovery. Just remember to periodically back up and occasionally maintain those log files.

One of the most common frustrations when linking Access to SQL Server: slow-loading forms packed with combo boxes. Each combo box runs its own query to fill up the dropdown, and when those hit SQL Server across a network, things can get sluggish. The fix: keep those combo box row sources tight, only include what you need, and, for complex lists, implement cascading combos so the form loads small sets of data at a time instead of everything at once. (Check out my video on optimizing combo boxes for more on this - you'll see a night-and-day difference in performance.)

Filtering SQL Server data from Access forms is not only possible, it's recommended! Instead of pulling every record into Access and then narrowing it down, pass your filter criteria directly to SQL Server via parameterized queries or pass-throughs. This way, all the chewing on data happens on the server, and you're only moving what you need over the network.

Wondering about moving 20+ Access tables into SQL Server? No, you don't need to do it by hand one painful table at a time. Tools like SQL Server Migration Assistant (SSMA) for Access, and the built-in Import and Export Wizard in SSMS, can take care of most of the grunt work. It's worth building a table or two by hand just to learn, but those tools exist for real migrations.

On permissions: should you set them for each user or use groups? Use groups whenever possible - assign a set of permissions to a group (like Accounting or Sales) and add or remove users as needed. It keeps things so much simpler, especially in bigger environments.

If you get stuck or something seems wonky - like Access demanding "unique record identifiers" during table linking - don't just click through. Think for a second about which field is really the unique identifier. Sometimes, a mistake here just means a more complex query behind the scenes (nothing explodes), but it's better to be precise.

And about SQL dialects: SQL Server's flavor is much closer to the global ANSI SQL standard than Access's. So as you move more into SQL Server, you'll notice your SQL looks less... quirky. Less jet/ACE "creative license," more standard-compliant statements.

Finally, don't overthink upgrading to SQL Server if you're a true single user, working on one PC. Access alone is perfectly fine as long as you can fit your data and performance needs. The benefits of SQL Server - improved security, networking, and multi-user handling - really become apparent when your database needs grow or when multiple machines need shared access.

As always, I appreciate everyone who's sent in questions and feedback; it helps me tailor the lessons to what's actually tripping people up. If you want to dig into any of these topics (especially the code-related ones), check out the video above for real-world demos, extra tips, and my usual "live bug-finding" style. Keep those questions coming and keep learning!

Live long and prosper,
RR

How To Handle Split Transactions and Multiple Categories in Microsoft Access Check Registers

Ever tried to assign a single financial transaction to multiple categories, only to realize your database design simply can't handle it? If so, you're certainly not alone. This is one of those classic stumbling blocks in database design that nearly everyone faces at some point - especially if you're using Access for any real-world financial tracking. Let's dig into why this problem arises, why just adding more category fields isn't the answer, and how the right table design can save your sanity.

Imagine this: you've built your first check register table in Access. You've got a spot for the date, the description of the transaction, the amount… and a category field. Feels straightforward, right? Rent, office supplies, utilities - they each get a neat little category ID. But then reality comes knocking. Suddenly, you've got a utility bill that's partly personal, partly business, or a mortgage payment that covers principal, interest, taxes, and insurance all in one chunk. Now that single category field in your transaction table feels like it's fighting a losing battle.

Here's the rub: real transactions don't play by the one-category-per-record rule. Sure, if your needs are super basic, a single category field works. But in the real world (especially if you're tracking stuff for your business or if you want to categorize your expenses accurately for taxes), transactions often need to be split into multiple pieces, each assigned to a different category. Classic accounting software like QuickBooks handles this, but many homegrown Access databases hit a wall.

If you try to sidestep the problem by sprinkling your table with Category1, Category2, Category3 fields, you'll quickly run into a maintenance nightmare. Every time you need "just one more" split, you end up redesigning your table - and that gets old fast. Plus, reporting on this tangled mess is virtually impossible.

So what's the secret? It's all about using a split table. Think of your main transaction table as the place where every real-world payment or deposit is recorded: date, description, amount, all the basics. Then, behind the scenes, you set up a related splits table - kind of like the order details in a sales database. Each split record links back to its parent transaction and holds its own category and amount.

For example, a $3,000 mortgage payment in your transactions table can hook into multiple splits: one for principal, one for interest, a couple more for taxes and insurance. Each split gets a category and the piece of the payment that goes with it. Or maybe your electric bill needs to be divided so a percentage is allocated as a business expense and the rest is personal. It's the same deal - one payment, any number of splits, each with its own category. No more awkward extra fields, no more redesigns every time something changes.

All you need is a simple one-to-many relationship between your transactions and splits. The main transaction table holds the source information, and the splits table breaks down each transaction as needed. When you build your forms, you can even use a subform to show and edit the splits right on the transaction screen. Lock down editing if you want to keep things simple, and offer a pop-up "Edit Splits" button for power users who want to fine-tune where the money goes.

This design has an extra bonus: your reporting gets much easier. When it's tax time or you want to see exactly what you've spent on office supplies versus owner draws, your reports just run on the splits table. You get rock-solid, accurate breakdowns - no more guesswork or questionable "other" categories.

So, the big moral of the story: if you ever need a transaction to cross over into multiple categories, don't try to cram extra category fields into your transactions table. Use a split table instead. It's neater, scales beautifully, and unlocks way more reporting power - plus, you'll avoid that "I have to redesign my database again" headache every time your finances get a bit more complex.

If you want step-by-step help, check out my check register video series for how to get started, my relationships video for setting up those crucial links, and my subforms tutorial for building the form interface. For a deep dive into split transactions, with all the bells and whistles, take a look at my Access Developer Level 54 class. The details - including handling percentages and rollback features - are all in there.

Questions, ideas, or database disaster stories? Drop a comment! And as always, the video above is there if you want a full walkthrough of everything we've covered today.

Live long and prosper,
RR

Sunday, March 8, 2026

How Changing Clocks Causes Problems and Why Daylight Saving Time Is Dumb for People and Software

Ah, yes. It's that time of year again where, for absolutely no rational reason, society collectively pretends the planet is suddenly spinning at a new speed and we all have to scurry around fixing clocks. Daylight saving time: the gift nobody asked for, but the burden we're all forced to carry. Twice a year, we're all running around like we're in a low-stakes action movie, smacking buttons on microwaves and car dashboards like we're defusing bombs. Somewhere, a digital clock blinks "12" in eternal protest. And honestly? I'm starting to admire its tenacity.

Let's be honest - no matter how many smartphones and smartwatches you own, there's always some rogue appliance in your house still living in the wrong century. If you've ever finished resetting all your gadgets only to discover the VCR is flashing "12:00" (and you don't even have any tapes left), welcome to the never-ending daylight saving struggle. It's like an involuntary scavenger hunt, and nobody gave you a map.

So, why do we do this? Why, in a high-tech world, do we all ritualistically adjust time as if the sun cares? It's not even a global effort - Arizona and Hawaii noped out ages ago, living life on their own time. Meanwhile, the rest of us are stuck waiting for Congress to get its act together. Florida even passed the so-called Sunshine Protection Act to keep daylight saving time year-round. Everyone cheered, and then… nothing happened. Because, surprise! You can't just stop the clock games without federal approval.

Even with bipartisan agreement - it's hard to find something both sides of Congress can agree on, but screwing up our sleep cycles is a rare unifier - we're still at the mercy of inertia in Washington. President Trump even said he supported ditching the twice-yearly time shift. Yet here we are, still wondering what time it really is twice a year, every year.

All this fuss wouldn't even be that bad if it had any real benefit. The idea originally popped up in 1908 in Germany and Austria to save fuel during the war. The U.S. codified it in the Uniform Time Act of 1966. Contrary to popular belief, this wasn't to help farmers - the ag industry lobbied against it. Actual quote: they hate it. So, the "think of the farmers" excuse? Myth. Busted.

In practice, daylight saving time screws up everything. Your sleep? Toast. Your sanity? Shot. In the days right after the switch, heart attack rates go up and productivity crashes. Trying to keep IT systems and databases in sync with actual time versus time on the clock? Good luck. Just ask any poor soul who had to debug scheduling software during a DST changeover. (And yes, even Apple messed it up. iPhone users will remember the clock glitch - a rare victory for Android fans.) If you use Excel or Access to track work hours, the safest route is using UTC (Universal Time), also known as Greenwich Mean Time, for all your records. That way, you won't have to explain why time appears to jump or repeat itself in your spreadsheets.

Of course, it's not just about computers. Resetting the oven, car, coffee maker, and wall clocks every time is just tedious - and there's always one you forget. Honestly, for a week or two each year, I just give up and mentally add or subtract an hour every time I look at the clock. The VCR is my nemesis, but at least it doesn't talk back (yet).

So what can you actually do about it, other than grumble? You can write to your congressperson. Yes, it's as exciting as it sounds, but if enough of us do it, maybe something will change. Want to make your voice heard? Google "write to my congressman." Input your zip code, find their contact page, fill out the form, and tell them how dumb the whole thing is (politely, of course). If you need inspiration, I've already written a letter - you're welcome to copy it and personalize it to your liking.

While we're at it, let's get ambitious. Not only does the world need to standardize dates (year, month, day - just do it already), but maybe it's time to consider adopting the metric system, a 28-day calendar, and giving New Year's Day its own holiday outside the calendar. Make Election Day the leap day and give everyone a day off to vote. I mean, why stop at clocks when there's so much more to fix?

Long story short: daylight saving time is pointless, outdated, and disruptive. The solution isn't changing clocks, but just changing what we do. If it's too dark for the kids in the morning? Start school later. Want more sun after work? Start earlier. Golfers concerned they'll miss the 18th hole before sunset? Tee off sooner. It's way easier than wrangling with Congress.

And yes, if you've got a clever meme about daylight saving time, send it my way - I love seeing them, and the best ones just might end up in my next video update.

For the full, ever-expanding director's cut of my "daylight saving time is dumb" rant, check out the video above. In the meantime, keep spreading the word, write your representatives, and maybe - just maybe - one day we'll stop this temporal madness for good.

Live long and prosper,
RR