Slashdot Mirror


Best Ways to Organize Bills?

scorp1us asks: "Every year on the 1st of January, I start a new set of folders for storing my bills. Generally, I keep everything divided up by account. But this seems to take too long. I wait 3-6 months and get a big pile nad have to go about sorting it. I have been considering a per-month scheme - all bills go to one folder, each month. With all the CS people out there studying sorting algorithms, has anyone found a better approach?"

33 of 112 comments (clear)

  1. Basic life management skills... by Anonymous Coward · · Score: 5, Funny

    ...are not news for nerds, no matter what "algorithm" spin you put on it.

  2. Journaling accounting system. by BoomerSooner · · Score: 2, Interesting

    Or you could just build categories in quicken/money/gnucash? and print reports at the end of the year.

    I use Quickbooks for my business and those are my only writeoffs anyway.

  3. My solution by mopslik · · Score: 5, Funny

    I file all of my bills in a circular metallic file, which I clean out weekly. It sure makes my bill-organization easier.

    Hold on, someone's pounding on the door...

    1. Re:My solution by Alrescha · · Score: 3, Interesting

      "I file all of my bills in a circular metallic file..."

      Although funny, this is not far from what I do. I have an 8 1/2 by 11 computer paper box under my desk. Paid bills go into this box in chronological order. When the box is full, I throw it into the closet and get a new box.

      The only exceptions are tax-related items. There are so few of those, they don't even get their own box.

      A.
      (who used to keep things meticulously in folders, until he realized that no-one cared, including himself)

      --
      ...bringing you cynical quips since 1998
  4. Sorting Algorithms? by Nasarius · · Score: 2, Informative

    This really has nothing to do with sorting algorithms, unless you're using a database or something. No, you're talking about a very small data set (in CS terms) that you just have to organize in a way that best suits your needs. You haven't provided nearly enough information for anyone to make a serious suggestion.

    --
    LOAD "SIG",8,1
  5. Insertion sort? by roll_w.it · · Score: 2, Insightful

    Always put your bills in order as you put them into your folders.

  6. counterstrike by schnits0r · · Score: 4, Funny

    With all the CS people out there studying sorting algorithms

    I dind't know that people who played counterstrike would be studying in this feild.

  7. binary search tree. by Anonymous+Cow+herd · · Score: 5, Funny

    It's quite simple. Just take a hole punch, and punch two holes into your root-node bill. Each subsequent bill will take three holes (parent, and leaf nodes) Then, chose your sorting schema (dollar amount, utility name, month name, whatever) and simply tie the bill to the appropriate leaf node with a piece of string. Fast indexing, and fast retrieval. Voila.

    --
    Ita erat quando hic adveni.
    1. Re:binary search tree. by synaptik · · Score: 2, Funny


      Yes, but don't forget to rebalance that tree every so often.

      --
      HSJ$$*&#^!#+++ATH0
      NO CARRIER
  8. I use a 3in binder by space_biker · · Score: 3, Informative

    I use a large binder to keep things together. The bills get hole-punched and inserted into the appropriate section and when you're ready to file the old ones, they're easy to access.
    Things like credit card receipts are paper-clipped or stapled to the invoices that they were charged to.
    I don't think it's the best right now, but it works better than our previous (non)filing system.

  9. Why sort by Uma+Thurman · · Score: 4, Insightful

    There's not really much need, is there? When a new bill comes in, you can put it on the stack of bills that need to be paid. When the bill is paid, you can shove it in a big box, right on the top.

    This procedure has a couple benefits. It's simple, taking no time or thought to implement. Plus, the big box implements a stack. If some bill needs to be discovered for some reason (a rare event) you will discover that the stack is mostly sorted in chronological order with the newest bills on the top.

    When solving any problem, it's important to ask yourself what level of implementation effort is necessary. There's only one reason to go into the box of past bills: to find an old bill. A manual search through the pile won't be appreciably speeded when the pile is fully sorted by date and category, so why go through that effort? Just as good is the nearly cost free implementation of a *nearly* sorted stack of bills.

    Of course, I am making the assumption that you are sorting bills to solve some sort of real-world bill-paying problem, and not a problem that a particular personal compulsion for neatness might raise (i.e. neatness/categorization obsession).

    --
    This is America, damnit. Speak Spanish!
    1. Re:Why sort by Otter · · Score: 3, Insightful
      It's simple, taking no time or thought to implement.

      And that's the crux of the matter -- any system you'll actually follow is better than any system you don't. The key to any bit of household organization is making it fit you.

  10. Do you ever take the bills out? by NanoGator · · Score: 2, Insightful

    Just curious, do you ever come back to them? I started to be that organized, then I realized they never come back out, so I stuff them all into a big envelope at the end of the year. In recent months, I have most of my bills come to my email account instead.

    I guess what I'm saying is "I need more info" before I can suggest a method that is helpful to you. One major ingredient to how you sort is how you intend to retrieve it. I'm reasonably certain that anybody who's ever written a search algorithm will give you a similar answer.

    --
    "Derp de derp."
  11. Multi-level caching based on access patterns by swillden · · Score: 4, Insightful

    What are your access patterns? Is this data just stored away and rarely, if ever, referenced again? Or do you frequently need to find it? Sorting, indexing and searching all require effort, but you can trade off sorting and indexing effort against search effort.

    Also, you don't necessarily have to have a single solution for all data elements. Stuff that is likely to be needed frequently and/or soon can be cached in fast-access storage, stuff that may be needed can be placed in slower storage, stuff that almost certainly won't be needed can be placed in archival storage and stuff that definitely won't be needed can be discarded.

    FWIW, here's my solution: I use a computer (and Quicken, though there are many workable alternatives -- that's just the one I started using 15 years ago) to provide quick access to all of my financial information. 99% of the time, all I need to know is who, what, when and how much, and the computer provides all of that. Additionally, there's plenty of incentive to keep it up to date, since doing so helps me answer the rather important question "Do I have any money?". It's also pretty easy, given I can download and automatically import bank and credit card statements.

    For managing the paper, I use a multi-level storage approach. I have a "to hold" file that is my fast-retrieval cache, for things that I know I'll need soon. I keep two files and a box for each year. One file is "tax-related stuff", the other is "warranty-related stuff" and the box gets everything else, in a random, completely disorganized jumble. Retrieval of stuff in the box is slow, but since it's basically LIFO-structured, more recent stuff is easy to find, which fits common access needs, and I really don't get in there very often anyway. Any need to reach into the box represents a cache miss, and I try to adapt my caching algorithms to minimize those (without overloading the cache, of course).

    I keep the last four years' tax and warranty files in the filing cabinet. At the end of each tax season, the previous year's box moves to archive storage in the basement. When a given years' tax and warranty files move out of the filing cabinet, they go in their corresponding box in the archive. Every few years I go through the boxes, and any that are more than 10 years old (7 is really adequate) get shredded.

    The computer-based data, however, is permanent. I put backups in a safety deposit box. I expect it will frighten me in 30 years to see just how much money I've made and spent in my lifetime.

    --
    Note to ACs: I usually delete AC replies without reading them. If you want to talk to me, log in.
    1. Re:Multi-level caching based on access patterns by Resseguie · · Score: 2, Informative
      I have a system very similar to this and others listed.

      • I have a pile that I still need to deal with
      • I enter all bills in Quicken as I pay them
      • I put all paid bills in to a big box, adding them from the front (like a stack, and mostly sorted by date)
      • I also keep separate tax related boxes (that I can compare against Quicken records when needed)

      In addition:

      I also use something akin to this or this for keeping receipts. You can usually find one of these smaller expanding files with each pocket labeled by month. When I come in each day I empty my wallet of receipts and add them to the current month's pocket. (Okay, I'm usually lazy and drop them all in a pile on the corner of my desk until sometime near the end of the month, but you get the idea.) At the end of the year, I put the folder in the cabinet beside the box with the rest of the paid bills. Combined with Quicken records, I can usually find anything I need in a matter of minutes.

      Receipts and bills aren't a problem for me. More difficult for me is figuring out how to organize other important documents - retirement funds, medical benefits, etc. Here "sorted by date" isn't as useful and unlike bills, I find myself having to return to them from time to time to look up information. I've ended up just using hanging folders for each in a file cabinet, but I still find it frustrating to determine how much of the fluff you get in the mail should be stored, where to put it, and how to find it.

  12. Physical paper? by MobyDisk · · Score: 2, Interesting

    Asking techies about paper for archiving is like asking the phone company how to communicate using tin cans and string. Go paperless!

    I run my life as paperless as possible. I use electronic statements whenever available, and I scan the remaining paper. It takes me about 15 minutes per month. I have a CD with all my taxes, bank statements, car repair history, etc. back to about 1994. I keep a copy at home, and a copy at a remote location just in case.

    As for sorting, I name the files by the date, and place them in folders based on the institution. It's not searchable without knowing the date, but I don't care. OCR could solve this, but I don't consider it worth the time.

  13. Welcome, Senator! by AtariAmarok · · Score: 2, Funny

    Of course, this comes from someone who hasn't balanced his checkbook (between ATM receipts and online banking - why bother?) since 1997 or so.",/I>

    It appears we have a United States Senator among us! Welcome to Slashdot!

    --
    Don't blame Durga. I voted for Centauri.
  14. Sorting? I need an system for _disposal_. by dpbsmith · · Score: 3, Interesting

    I mean, I just realized last year that in the basement I had six shoeboxes containing twenty-five years worth of cancelled checks, invoices and receipts.

    I tried to go through them, but realized that I didn't really have any quick, easy, reliable way to decide which could be safely thrown out. Sure, 95% of them were easy. Most bills and cancelled checks only need to kept for long enough to resolve any mixups. But the rest were fairly hard.

    Tax returns? I think the answer is supposed to be that you don't need to keep them after ten years.

    And in the really old ones, I realized that I was fascinated by the changes in the look of bills, receipts, and checks. The oldest ones were printed in ink with chaintrain printers, for example. Then they started to become laser-printed--in monospaced type. Then they acquired proportionally-spaced type. Then they started to get laid out with little boxes and sidebars and things...

    Up to about ten years ago I still got--what DO you call those anodized aluminum boxes they always used to have on the counters of small businesses, containing what I think were continuous-form carbon receipts that might have been about 6 by 8 inches in size, onto which bills/receipts/invoices were written by hand? The typefaces popular for letterheads, business cards, and so forth have changed considerably over the years.

    But I digress. What algorithms and rules of thumb do people use for deciding what bills can be thrown out? Pardon me, of course I meant shredded.

    (And please don't tell me to "just scan them..." then I need to fret about archival media and whether CD labels rot CD-R's and whether Blu-Ray DVD drives will be able to read CD-R's and how to assign them file names and... oh, my aching head)

    1. Re:Sorting? I need an system for _disposal_. by synaptik · · Score: 2, Insightful

      Well, I was a first-time, new-construction home buyer 2 years ago, and all my financier asked for was a pay stub. Perhaps these comments of yours aren't hard-and-fast rules, or perhaps my lender didn't feel the need for that level of due diligence (plausible, given that the mortgagor was the parent company of the builder.)

      They verbally inquired about the source of my down payment, but just they took my word for it.

      --
      HSJ$$*&#^!#+++ATH0
      NO CARRIER
  15. Big Pile Nad by Dr.+Smeegee · · Score: 3, Funny
    "I wait 3-6 months and get a big pile nad have to go about sorting it."

    Try draining your piles with a large diameter needle about once a week. This prevents the secondary scrota formation and makes riding a bicycle much more workable. If you have such a large abundance of pile nads that they require catalogueing, perhaps you need to need to seek out an apple corer or it's surgical equivalent.

    Thanks.

  16. You think about the solution too much. by ewhenn · · Score: 2, Funny

    A wife is really great for this task. After all, women love to shop and handle money. Learn to exploit her natural talents.

  17. Why bother? by ksheff · · Score: 2, Interesting

    Why do you need to keep the bills? Are you going to use them to compare how your utility rates have changed over time? I've found that I usually only look at them once I get them in the mail and then again when I pay them. If they are kept, they usually get put in a drawer with lots of other old bills and never looked at again.

    Unless it is something like a medical bill where it's common to get charged multiple times, are you ever really going to need to see the details for your utility or cable bill ever again? Probably not. So why not shred them and get rid of them?

    --
    the good ground has been paved over by suicidal maniacs
  18. Prepay/Shredder by linuxwrangler · · Score: 2, Interesting

    I hate paying bills so before I was married I would prepay my bills. Most (phone/cellphone/power/water) are so small that it costs me more in monthly stamps than I would lose in interest. I would generally write a check for at least 3 months rounded up to the nearest $100. Made checkbook balancing really easy. Each month I'd glance at the bill for correctness then file it. Saved lots of time. A friend of mine was more extreme. Every January he paid all his bills for the year in advance.

    Now my wife pays the bills and she is ruthless about getting rid of paper. Almost everything gets shredded immediately after being paid.

    I used to be paranoid about dumping stuff 'cause "I might need it someday" but I've gotten the bug and shredded lots of old statements and gained at least a foot of space in my file drawer. My desk is lots clearer and I can find the stuff I actually need to find lots faster.

    --

    ~~~~~~~
    "You are not remembered for doing what is expected of you." - Atul Chitnis
    1. Re:Prepay/Shredder by Prior+Restraint · · Score: 2, Interesting

      My only objection to your method would be that you're missing out on the opportunity to let your money work for you. You're earning less interest (or fewer dividends) than you would if you paid your bills as they came. You'll also have less wiggle-room when unexpected expenses occur.

      I'm sure your utility companies love you, though; they get an extra couple of months to let their interest compound.

  19. you just need discipline... by jeffy124 · · Score: 3, Interesting

    it sounds like you have a good filing system already, but lack the discipline to stick to it. you'll probably find a large number of people who file by month, and a large number who file by account. I myself am sorta a both. I keep monthly bills by account, and keep store credit/debit card receipts by month.

    pick a filing system you like and get yourself into the habit of sticking to it in January, and dont let teh papers keep piling up into june.

    --
    The One Rule Of Chess You'll Ever Need: Don't play someone who carries a kit in their bookbag.
  20. Easy by RealityMogul · · Score: 3, Funny

    Eliminate most of the unnecessary filing by throwing away the "normal" white envelope monthly bills. Wait for the yellow certified "disconnection" envelopes to come in and then sort those by shutoff date. As you pay them one day prior to shutoff, throw them away.

  21. Not to burst your bubble, but(+) by Mycroft_514 · · Score: 2, Interesting

    >Tax returns? I think the answer is supposed to be that you don't need to keep them after ten years.

    If you get audited, and the government finds errors, they can go back as far back as you ahve been paying taxes, as my Dad found out.

    Good thing he had laid a trap for them. The first errors they found were such that they owed him... Like not claiming a charitable deduction that ended up being several hundreds of dollars. They went back to the church that it was given to and got a receipt.

    It was a large scale manger scence done in ceramic, and handpainted. Originally they were just going to give it and not worry about the deduction, but when the IRS came a knockin' about some other issues, it was insurance in the hole.

  22. Try a payment service by SkywalkerOS8 · · Score: 3, Informative

    Try using a payment service like PayTrust. All of your bills go to them and are scanned in and presented online. At the end of each year they offer to send you a CD with all of the bills for the year. The CD they send is browser-based but has a light Java app that acts as a local web server, allowing you to perform searches and sorting of the data through your browser. I've been using them(actually I started with paymybills.com which was bought out by them) for 4 years now and haven't regretted it once. I just ordered my 2003 CD which includes my 2000, 2001 and 2002 records. About half of my bills are delivered to them electronically now so those are HTML instead of JPEGs.

  23. I had this same problem by mc6809e · · Score: 3, Interesting

    I created a spreadsheet to solve this problem.

    In the first column I have dates. In the next column the current bank account balance. In the next columns I have money in/out. This includes paychecks, mortgage, student loan payments, credit card payments and a column for other expenses.

    Most of these dollars in/out columns is setup so that it checks the date in column A. In the case of a paycheck, it checks the day mod 14 (income every two weeks). In the case of the mortgage, it checks to see if the day of the month is the 6th and not a weekend, etc. Some checks are complicated like my water bill-- the due date is the Friday between the 3rd and 9th of each month. I also have to estimate certain payments ahead of time.

    Then, all these columns are added together accross the same day and carried over to the next day's current account balance.

    It works great. Whenever a check comes in, I just open the spreadsheet, look at everything coming due according to the spreadsheet, and payit. It even lets me see when I've got to carry money in my account over several pay periods to cover automatic widthdraws from my account for things like the mortgage payment.

    When new bills come in, I just update my estimates in the spreadsheet or add the amount the other expenses column. When I have take money out of the account to pay for things like groceries, I use a debit card and update the spreadsheet when I get home.

    Now you might ask how this solves the problem of getting rid of those paper bills. The key is to create one sheet of paper with all the information you need to handle electronic payments -- things like URL's, etc. When you get paid, go online with this sheet and pay everything you can electronically. I'm to the point now where I only have to write maybe one or two checks a month to pay for things. I keep one small stack of bills that go into this category. It's so small a stack, I don't bother with things like file folders.

  24. Paytrust by Illusion · · Score: 2, Interesting
    I haven't touched a bill in a few years. I pay $10/mo to paytrust.com (who bought paymybills.com, which I was using) to open, scan, type in relevant numbers and dates, and archive my bills. They then automatically pay most of them according to rules I have set up.

    This is a far superior system to just ignoring everything but the pink bills (past due notices), which was what I was using before. :) $120/yr is way less than I was paying in late fees, so it is a bargain for me.

    --

    Aaron

  25. Re:Turn off your computer and get a wife! by corbettw · · Score: 2, Funny

    Even better, get yourself an ex-wife. Then you won't have enough money to pay your bills, so who cares how they're sorted?

    --
    God invented whiskey so the Irish would not rule the world.
  26. Excellent opportunity for Mozilla extension by Tim+Macinta · · Score: 2, Interesting
    I too have a large stack of bills that I sort through about once or twice a year and for that and many other reasons I have been wanting to switch to paying my bills online for quite some time now. The problem is that with online bills I would procrastinate just as much which is a serious problem because a lot of companies that I use only keep invoice records for the past X number of months (usually around 3 - 6). Most of my bills are business expenses and I consequently need to keep records of them, so I have chosen the lesser of two evils and continue with snail mail invoices so that I'll have everything kept around for my records even if I don't have time to load, save, and verify several dozen different web pages each month.

    What I would absolutely love to have is a "recording mode" in Mozilla so that I could ditch the snail mail invoices forever. The way it would work is that you would click a "record" button on Mozilla to enter recording mode and then every page that you look at would be permanently archived for later user, including all page prerequisites (images, etc.), and all form data. Then, merely by paying my bills online, I would automatically get a permanent, electronic record without having to manually save the pages (which doesn't always work right anyway because some sites force cache expiration). Even better, Mozilla could detect that I normally record my visits to American Express, for example, and automatically ask me if I want to start recording the next time I visit, so that I don't even have to remember to click the "record" button.

    I submitted this as a feature request to Bugzilla, but it could use some more people to vote for it. I would probably even pay a nominal bounty for this feature, though I don't have time to write up exactly what I want at the moment, so I'm just hoping that somebody else has the same itch.

  27. Better bill management with gravestones by Sevn · · Score: 2, Funny

    I find it much easier and much cheaper to move every six months and change my name every 12 months. It's as simple as picking a name on a gravestone, and filling for a tax ID number for a business by that name. It will run you about 1500 grand for the entire process and that does add up, but it's a lot cheaper than actually making car and house payments! Like I'm going to fork out the 3 grand a month they want for this condo. It's ridiculous. The 15 grand a month I make from spam is more wisely spent on hookers and drugs. Take it from me, paying bills is for suckers.

    -- Gene Siskel

    --
    For every annoying gentoo user, are three even more annoying anti-gentoo crybabies. Take Yosh from #Gimp for example.