Slashdot Mirror


Specifications of Intuit's .QFX Format?

mad.frog asks: "I recently upgraded my ancient version of Quicken to the latest (Macintosh) version, with the intention of being able to download my credit card transactions directly from my bank into Quicken, rather than entering all that stuff by hand. As it turns out, almost no banks support doing this for non-Windows platforms (not surprisingly, Intuit doesn't point this out on the package). But here's the weird part: the information downloaded is just an xml-like text file (.QFX). Anyone know how (or why) they would make such a generic file platform-specific -- what business advantage does Intuit (or my bank) have in restricting how I use this information? Also, does anyone happen to know details of this (apparently undocumented, Intuit-specific) format so that I can hack mine into submission and use this data anyway, even if it's not on my bank's Platform Of Choice?"

56 comments

  1. Did you try importing it? by PhysicsGenius · · Score: 1, Troll
    If that works, it could be your ticket.

    OTOH, it would be in violation of the DMCA, not to mention stealing from Intuit and your bank, so maybe you better not confess to it here.

  2. Quicken API by MobyDisk · · Score: 2

    I believe that Quicken has some sort of API for adding transactions. I haven't used it in the past several years, but I know that around '98 or so, they had some sort of pluggable system for connecting to various internet banking systems. Perhaps you should stat by talking to Intuit.

    1. Re:Quicken API by skinfitz · · Score: 2

      Have you ever tried talking to Intuit "support"?

      They they just ignore you.

  3. perl by delorean · · Score: 5, Informative

    My bank's wouldn't import right. They weren't using windows linefeeds.... they didn't set the cleared flags, either. What use is that?
    la lalala! Perl to the rescue.
    I did an export, examined the code, and wrote a little script to fix the downloaded file into what I needed (replace linefeeds, add the cleared flag).
    Here is my code; it might be good for starters. Not sure what the new version needs.
    ------------
    print "I fix QIF files!\n\nEnter Filename: ";
    chomp($filein=<STDIN>);
    print "Working on $filein.\n";
    open (FLN, "<$filein");
    @raw=<FLN>;
    close FLN;
    open (FLO, ">Fixed_$filein");
    foreach (@raw)
    {
    chomp $raw[$a];
    print FLO "$raw[$a]\n";
    $test=(substr $raw[$a], 0, 1);
    if ($test eq "D")
    {print FLO "C*\n"; }
    $a++;
    }
    close FLO;
    print "Finished!\nhit return and close window.";
    <STDIN>;
    -----

    --
    "You may all go to hell and I will go to Texas"
    Sen. Davy Crocket to US Congress, Nov. 1, 1835
    1. Re:perl by delorean · · Score: 1

      I forgot to mention, that was QIF files. But, you can probably make it work as a Q** to QIF to import.

      --
      "You may all go to hell and I will go to Texas"
      Sen. Davy Crocket to US Congress, Nov. 1, 1835
  4. Risky by 0x0d0a · · Score: 1, Troll

    hack mine into submission

    You trust your electronic banking to an unsupported hack you're going to whip up?

    You're braver than I am...

    1. Re:Risky by Jeremiah+Cornelius · · Score: 3, Insightful

      I really don't think that translating platform-specific CR->LF chars in an ASCII formatted file is high-up as a "dangerous, unsupported hack" in the list of data integrity risks. :-)

      --
      "Flyin' in just a sweet place,
      Never been known to fail..."
  5. problems with OS X Quicken 2003 (OT) by b_pretender · · Score: 2

    I have a problem with Quick 2003 for the Mac. Citibank says to use a PIN to access my data. I have set up an account at the Citi online website, but *neither* the PIN or my Citi online password access the data. What gives? Does anybody else know which of these two to use? One of them worked at one time, but now nothing!!

    1. Re:problems with OS X Quicken 2003 (OT) by GiMP · · Score: 4, Funny

      Give me your PIN and our Citi online password and I will see if I can get it working for you.

    2. Re:problems with OS X Quicken 2003 (OT) by The+Mayor · · Score: 2

      This is a different PIN...a PIN just for Quicken access. Call up Citi...they'll give you one. I had the same problem.

      --
      --Be human.
  6. Key word is 'support' by Krelnik · · Score: 2
    almost no banks support doing this for non-Windows
    what business advantage does Intuit (or my bank) have in restricting

    The key word there is support. Just because something isn't supported, that doesn't mean it wont work. Have you tried it?

    Very often this is simply done to reduce the load on the company's tech support line. (Either Intuit or the bank or both). Its hard enough to get competent folks to man your support lines, without having to train them on things they will only encounter once in a hundred calls. So they save some money by going lowest-common-denominator.

    1. Re:Key word is 'support' by Quixotic+Raindrop · · Score: 1

      without having to train them on things they will only encounter once in a hundred calls

      Two things. First, the Macintosh has between 5-8% of the destkop space. That's not one out of every hundred, that's, just on raw marketshare, one out of twenty. Second, if the one per one hundred call is even remotely accurate, that means that only 20% of those Mac users have those kinds of problems.

      Sure, not every user uses Quicken (or, even has it installed), but that's a poor excuse for poor customer service. That bank's customer uses a Macintosh. That is all there is to it. It is not sufficient to say that the majority of people use Windows, so let's just support Windows users. That's exactly what Microsoft counts on: monopoly control over the market without spending money to quash competitors. Is that really acceptable?

      --
      Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. (Einstein)
    2. Re:Key word is 'support' by Krelnik · · Score: 2

      I didn't say it was acceptible, but it is reality. Banks are like any other company, they have fixed budgets for things like support, and in these economic times those budgets are typically stretched thin or are being cut.

      Managers are going to look for any way to stretch that budget, and if that means ignoring 5% of the user base, frankly some of them would be willing to take that risk. (Plus they can always play the 'fingerpointing' game with Intuit if push comes to shove).

      What percentage of the available base of tech support personnel have Macintosh experience? Is it similar to the 5 to 8% you quote for desktop penetration? If so, that bank is going to have a really hard time hiring some techs who can answer Macintosh questions intelligently. As a result they're going to have to pay them more to retain them. You can imagine where this leads in a manager's mind.

      It may well suck, but decisions that come down to money often do.

    3. Re:Key word is 'support' by ivan256 · · Score: 3, Interesting

      It may well suck, but decisions that come down to money often do.

      Interesting that you put it that way, because my decision when it came to my money was to use a bank that supports my platform. I use linux exclusively at work for reasons that are obvious if you look at my e-mail address. Fleet (BankBoston back in the day) has the best online banking software, and best of all, they support Mozilla on Linux and they supported Netscape 4.x on linux when that was standard. Their tech support answers the phone, and they are responsive to bug reports. I've sent in two bug reports, and they were both fixed within 48 hours. I've heard that they are similarly helpful for Mac users (and a quick check shows their software working correctly on my Mac). If Citibank won't support you, I recommend Fleet. As a bonus if you keep a large minimum balance, they have no fees and competitive interest rates to go along with their open-minded platform support policy.

      Sucks for all those other banks that I looked into that turn away customers with large balances because they can't invest minimal effort in standards compliance.

    4. Re:Key word is 'support' by Quixotic+Raindrop · · Score: 1

      Yes, you're right that it is reality at this point in time. That doesn't mean that we have to accept it :-) If we are serious as a group about wanting choice re: the OS we run on our computer(s), we must pressure those who are weak-willed, and willing to let Microsoft and Intuit and whomever else bend them over without so much as a kiss hello into doing the Right Thing(tm): support open, cross-platform standards.

      BUT, as a previous poster mentioned, the file is cross-platform, at least in content (if not line endings), and shouldn't be a problem. So, the real culprit here is Intuit, for charging banks an extra fee for, essentially, transforming line endings. That doesn't absolve us of the responsibility for chastising and dressing-down those banks that are being stupid, but it does mean that perhaps we also need to be beating down Intuit's door.

      --
      Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. (Einstein)
    5. Re:Key word is 'support' by itwerx · · Score: 1

      Well whad'ya know...!
      I never need tech support but I'm changing banks just on principal!

    6. Re:Key word is 'support' by Spunk · · Score: 1

      Fleet and BankBoston were often sources of headaches for me. Eventually I decided the fees were too much and I switched to a credit union. But Fleet's Homelink is excellent and I miss being able to use it.

  7. cflf? by eMilkshake · · Score: 2

    This probably isn't it, but it wouldn't hurt for you to open the file and change the cr to crlf since that is a distinction b/t dos and bsd.

    1. Re:cflf? by red_dragon · · Score: 2

      Just to clear up:

      • DOS: CR + LF
      • Unix/BSD/Linux: LF
      • Mac OS 9.x and earlier: CR
      • Mac OS X: LF

      'recode' can take care of converting between these and other formats, along with converting between character encodings.

      --
      In Soviet Russia, Jesus asks: "What Would You Do?"
  8. QFX - The Royal Scam by Anonymous Coward · · Score: 5, Informative

    Intuit is a bastard of a company.

    I happen to use Quicken 2001 on a Mac.

    When I switched banks at the beginning of the year, I asked if they supported Quicken.

    They said, "Yes. You can download your transactions into Quicken."

    I didn't dig any further since, my assumption was, once I get the file downloaded, Quicken should just import the data. Well, that's not quite the case.

    I go online and download the a "Web Connect" (QFX) file for my account and it gets saved to my desktop. I flip over to Quicken and say "Import Web Connect". Quicken opens the file, proceed to connect to the internet and reports back "Quicken is currently unable to verify the financial institution information for this download. Please try again later."

    Hmmm... that's strange. Why did it go online? Why didn't it just import the file?

    After a few days of trying different things and talking to the bank, I decided to break down and call Intuit Tech Support ($1.95/minute). After being on hold for awhile and talking to a technician, I am told "Your bank doesn't support Macs". The rest of the conversation was along the lines:

    Me: "What do you mean?"

    Tech: "You can't download transactions into Quicken from your bank because they don't support Macs."

    Me: "That doesn't make sense. My bank is not the issue. I have the QFX file - which is the same file that I would get if I were on a PC - Quicken is just refusing to import it."

    Tech: "That's because your bank doesn't support Macs."

    Me: "I already have the file from the bank; Quicken just needs to read it in."

    Tech: "Quicken needs a QFX file formatted for Macs. Your bank would need to pay to have different servers for Macs."

    At this point, I knew I was screwed. So, I started thinking, what information can Quicken be sending when it goes online during an import? The OS, probably. But, what else? I fired up BBEdit and opened the QFX file. They probably wouldn't send account or transaction info - leaving mainly the following parameters:

    ORG (Bank name)
    FID (Some ID internal to Intuit)
    INTU.BID (Same as FID)
    BANKID (Bank Routing Number)

    So, for kicks, I called up a buddy of mine who has an account at another bank that has "Mac Access" and asked him to download a QFX file and give me those parameters.

    A quick BBedit ... fire up Quicken ... click Import:

    Viola! The file imported with no issues. All the online connection does is connect back to Intuit and ask "Has this bank paid for Mac support?" - if the answer is "no", the import is stopped.

    Now, since I don't use any Quicken Online Banking features, I can't vouch for how it affects those (I would expect them to fail since the routing numbers are wrong). But, as a pure import facility, there are no issues doing it this way.... which happens to be the only feature that most people I know use (importing vs. Quicken Online Banking).

    So, Intuit is going out of their way to make pay for "Mac Support" when it doesn't cost them a cent more. Sure, development of Quicken for Mac might cost more, but that's why it's double the price of the PC version. We pay for certain functions in Quicken - importing transactions is one and to prevent us from doing so because they want more money from our banks just doesn't seem right.

    1. Re:QFX - The Royal Scam by quinto2000 · · Score: 1
      Viola! The file imported with no issues

      Any other musical instruments appear? Why is it so difficult for people to use the right words?

      --
      Ceci n'est pas un post
    2. Re:QFX - The Royal Scam by Anonymous Coward · · Score: 0

      Excuse me, your almightiness ... it must be a hard burden to carry ensuring you never transpose two fucking letters.

    3. Re:QFX - The Royal Scam by delorean · · Score: 2, Funny

      I once saw a marrionette.
      I picked it up and commenced to blow
      until I was out of breath
      then came the dawn, I yelled "Doh!
      I was thinking of a clarinet!"

      The little feller wasn't too happy
      He stomped his little wooden shoe
      He made a remark, it was very snappy
      A big wooden fist at me he threw
      And a splintered lip I had from his slap.

      --
      "You may all go to hell and I will go to Texas"
      Sen. Davy Crocket to US Congress, Nov. 1, 1835
    4. Re:QFX - The Royal Scam by Anonymous Coward · · Score: 0

      Yes, it is.

    5. Re:QFX - The Royal Scam by quinto2000 · · Score: 2

      That was pretty cool. Who wrote that poem?

      --
      Ceci n'est pas un post
    6. Re:QFX - The Royal Scam by delorean · · Score: 1

      me. just now. I must be feeling punchy. I wonder if someone in the office will make a Starbucks run?

      --
      "You may all go to hell and I will go to Texas"
      Sen. Davy Crocket to US Congress, Nov. 1, 1835
    7. Re:QFX - The Royal Scam by Watcher · · Score: 2, Interesting

      I've written the software to generate the QFX file and transmit it to the client system. As long as your browser has been configured correctly for the MIME type (application/vnd.intu.QFX), your browser should be able to pipe the data to Quicken. It sounds like your bank either did not set the MIME type in the script, or your browser didn't have the appropriate entries to pass data of that type to Quicken.

      QFX (really OFX) is platform independent. The tech rep was lying to you.

    8. Re:QFX - The Royal Scam by Anonymous Coward · · Score: 1, Interesting

      I know it is.
      You know it is.

      Evidentially, the banks (and Intuit) are the only ones that think different.

      This is not a question of MIME types. Quicken read the file fine. During its import, it takes the bank info and check to see if the bank "supports" macs.

      If, according to Intuits database, the bank does not support Macs, the import is killed with an error. If the bank does support Macs, the import is allowed to continue.

      Imagine you had a Apex DVD player and a Sony TV connected via standard S-Video cables. An analogous situation would be the DVD player turning off its S-Video out because it doesn't "support" Sony. This would be rediculous - S-Video is S-Video.

      By the same token, QFX is QFX and it should not matter where the file comes from, Quicken should be able to import the file WITHOUT checking that the bank "supports" macs and certainly WITHOUT going online.

    9. Re:QFX - The Royal Scam by matthewd · · Score: 2

      This sounds like a classic story for Infoworld's Gripe Line column.

    10. Re:QFX - The Royal Scam by itwerx · · Score: 1

      Out of curiousity, try unplugging your network cable and see if it will import.
      On a separate note, I wonder if this could lead to a class-action suit against Intuit?

    11. Re:QFX - The Royal Scam by grammar+nazi · · Score: 2

      I have the same problem. Please post the information so taht I can update my files.

      --

      Keeping /. free of grammatical errors for ~5 years.
  9. QIF vs. QFX by waldoj · · Score: 2

    There's no reason why you have to use the QFX format for this. Most lending institutions will support the QIF format, which can be imported quite nicely into Quicken 2003 for Mac OS X. (I know, because I did it just last night. :) I don't know what the QFX format does, but I suspect that it allows Quicken to actually interact with your credit card, allowing payments to be made from within Quicken. QIF, on the other hand, merely provides a record of transaction that must be manually imported into Quicken each time.

    Now, I can't speak for Quicken 2003, because I haven't tried it, and because Intuit's site doesn't go into details...but, Intuit does have a guide on how to get QFX files working on the Mac. Have you tried that?

    -Waldo Jaquith

    1. Re:QIF vs. QFX by tdemark · · Score: 1

      When I tried to use QIF, transactions would get imported more than once if they appeared in two separate downloads.

      My CC download facility had a bug where transactions would not always download - if I pulled transactions 2 days ago, and then, today, pulled transactions that happened since my last download, there was a good chance that a transaction that occurred 2 days ago would not be recorded.

      So, I got into the habit of downloading either the last 90 days or all my transactions every time. If I did this with QIF, I would invariably end up with duplicate transactions in my register. QFX did not have this problem.

      Don't know what the issue was, once QFX fixed it, I didn't research any further.

  10. Using QIF Data by DonK · · Score: 1

    I have several years of financial data on Quicken which I found tedious to use. But Quicken lets you export the data in the (now not-supported) QIF format, which turns out to be a fairly straightforward text file, which then can be read into some other custom-made application. (I am in the process of loading this into a simple homemade MS ACCESS application).

  11. QFX is basically just OFX by Anonymous Coward · · Score: 0

    You can get the spec here (but you must register first).

    1. Re:QFX is basically just OFX by truth_revealed · · Score: 3, Informative

      GNUCash can import OFX/QFX files.

  12. Intuit Developer's Network by tjcoyle · · Score: 1

    Intuity's Developer Network let's you download both the QuickBooks SDK, as well as their QuickBase API. Here it is:

    http://developer.intuit.com/

    The QuickBase API evidently supports VB, Perl, and Java, so you have a platform independent option available.

    While I can't definately state that this will help you, in my own experience, I've been able to get at/do everything I need to in QuickBooks using these products.

    Good luck!

  13. QFX is a variant of OFX by Anonymous Coward · · Score: 0

    Open Financial eXchange is a format invented by Intuit, M$, and somebody else. QFX is Intuit's variant that I *think* extends OFX slightly in ways interesting to Intuit.

    QIF is an old format that I believe banks are interested in dropping in favor of the more flexible OFX format.

    Innovision is one company that sells an OFX server to banks.

  14. Wrong Question by poincaraux · · Score: 3, Funny

    "Anyone know how (or why) they would make such a generic file platform-specific -- what business advantage does Intuit (or my bank) have in restricting how I use this information?"

    Yeah, I can see the business meeting now:

    Intuit Programmer: "OK. We have written software that works on all possible platforms. It's all debugged and ready to go."

    Intuit Business Guy: "Really? It runs perfectly on all platforms, and you're done with the whole debugging cycle? Didn't that cost a whole lot more than just writing code for the one platform that 99% of our users use?"

    Intuit Programmer: "No. The magical code elves wrote all of the extra code for us. The code gnomes tested it. We paid them in fairy dust; no actual money involved."

    Intuit Buisness Guy: "Hmmn .. well .. that's great, but I think we can get a real business advantage by keeping all of that stuff secret and not using it. Let's just ship the Windows version."

    The question you should be asking is "how much of a business advantage would Intuit gain from investing the resources to develop this stuff for multiple platforms?" My guess is that it's just not worth it to them at this point. But who knows .. they might be working on it. My guess is that the smart thing to do is develop Windows stuff first, make 99% of your users happy, and develop other stuff later.

  15. QFX is OFX by Watcher · · Score: 3, Informative

    The QFX file format is a standard implementation of OFX. For those not in the know, OFX (Open Financial eXchange) is an XML standard for financial data exchange. This is supported by a number of third party financial software providers (including my glorious employer). If your bank doesn't have OFX support, then you're pretty much up a creek. QIF, Intuit's older data format, is pretty much dead now. I don't know if they still support it, but from what I've been told support is sunsetting rapidly.

    I don't know who told you that no banks support QFX/OFX for non-windows platforms, it is a platform independent standard. Unless, of course, your bank purchased a windows/IE specific solution. I know our software does work on mac versions of Quicken (I wrote it), and if they follow the intuit example code it is trivial to write.

    The OFX standard, including the DTD, can be found here

    1. Re:QFX is OFX by Anonymous Coward · · Score: 0

      Technically, only the most recent version of OFX is XML compliant. The older versions that the vast majority of banks use is not XML, but SGML.

  16. MS owns Intuit, right? by Anonymous Coward · · Score: 0

    If memory serves (which it may not), doesn't Microsoft own Intuit?

    1. Re:MS owns Intuit, right? by chopkins1 · · Score: 1

      In the case of M$ potentially owning Intuit, the courts decided (correctly for once) that M$ owning Intuit would create a near or total monopoly in the personal money management software market and denied the merger/acquisition.

  17. OFX not qfx by calculon2021 · · Score: 1

    While QFX was an early standard, it is now only supported by Quicken and legacy versions of Money. Years ago OFX was started to act as a sort of standards body for downloadable transactions.

    I believe that GNUCash has OFX support in development and there is a LGPL OFXLib on Freshmeat or on SourceForge. You could also go to www.ofx.net to get the specs (though you will need to sign up).

  18. Quicken has had its time by Anonymous Coward · · Score: 0

    For me Quicken has lost most of its advantages over the years. I started using it back in '95 and at the time I thought it was the greatest thing ever. If your bank supported it (and I choose banks based on this) you could download all your transactions and launch your bill pay, and you could even mail out checks which saved me a lot of postage (supposedly the bank backend did EFT's instead of printed checks, and thats now they made the money).

    Nearly eight years later, nobody offers free Quicken access (prices range from typical $5.95 a month to a staggering $26.95 that Bank Of America wants for Quicken access) and it doesn't matter if your using billpay or not (HSBC does allow you to download transactions for free, but thats atypical though hardly unexpected for a world class bank like them). I can still download my credit card transactions automatically without a fee, but for my unsupported credit cards and for all my checking and savings accounts I have to manually log into the web sites and download the transactions, then manually import them into Quicken which is still easier then entering in everything by hand but not by much.

    At one point I had a web based transaction manager I wrote which would screen-scrape transactions from a couple of the banks I used in liu of Quicken (or QIF/QFX downloads because I knew they would be the next to go). I was seriously considering dumping Quicken and switching over to this, then one day someone exploited a security hole in Bind and erased my hard drive. =( I really haven't had the heart yet to sit down and rewrite the application.

  19. The Problem of Importing and Online Banking... by cr0sh · · Score: 1
    This is slightly off-topic, so I am going to self-mod this post down to "1" in fairness (mods, please don't mod down further)...

    Anyhow, what I am wanting to impress upon readers are the issues that I hate about online banking as well as import of files from a bank - to save time from hand entering transactions.

    On the surface, the idea that you could import these transactions, or call them all up in a web browser, sounds good at first glance. Saves you the typing, no need for writing down the transactions, etc, right? But that is where the problem lies.

    When you write down your transactions, or hand enter them (from receipts) - at the end of the month when you balance your account your version had better match up with the bank's version - if it doesn't then there is a problem, and the job is to figure out if it is on thier end, or your end.

    Say you go to a restaurant and order dinner, and pay for it with your debit card. You enter the transaction at home that night. A month later you receive your bank statement, and during your account balancing session you notice that on the same night are two transactions for the same amount at that restaurant - but you know you only had dinner once, based on your accounting entry (this is not really a made up story - I have had it happen to me several times, at different restaurants).

    Had you been importing the account transactions, or been looking at the "web-statement" online, you might very well miss the problem (there is a way around this, kinda a "reverse-balancing" system - whereby you compare the statement to your collection of receipts, to see if all the receipts are accounted for and only used once - but this system has flaws, mainly due to needing to read each line, possibly skipping lines, and other issues) - but you would never know you lost some money...

    It really is bad accounting practice - I doubt banks and businesses would use such a system - so why should individuals? I tend to think this issue isn't brought up much because these mistakes, since they aren't as easily caught by individuals, actually cause more money to be earned by the banks and businesses (especially if the businesses and customers bank at the same bank - the money never leaves the bank, so bank doesn't care, and the business has made double money off of one transaction - why should they care?).

    Good accounting practices are to keep a separate ledger of your own, and don't keep two separate running copies of the ledger (to avoid double entry errors). Then, at the end of the month compare your ledger to the bank's.

    This is one thing I like about the older CheckFree software (and the only thing keeping me on Windows) - you had basically a check ledger for each of your accounts, and you could enter in transactions - at the end of the month you enter starting and ending amounts, and check off each transaction as you see it on your statement. If you have the same number of transactions with the same amounts, the total at the end comes out to be $0.00 - indicating the account it balanced with no descrepancies. It has save me many times.

    I tried to go with on-line service with BofA (where I bank), but it doesn't offer that kind of feature, nor does it have the option to pay online to merchants who don't take EFT payments through them (whereas CheckFree will cut a paper check and mail it). I have yet to find a solution under Linux that will work for me (GNUcash would be it if it had EFT support, but without it I would need to use some other electronic payment system, and also do double entry, which breaks one of the main good accounting practices). If anyone knows of one, let me know (I have considered running the CheckFree software under Wine, as well)...

    --
    Reason is the Path to God - Anon
    1. Re:The Problem of Importing and Online Banking... by delorean · · Score: 2, Informative
      I'm not sure I follow you.
      I enter my debit card receipts every night (and then my budget spreadsheet since the Intuit budget feature is worthless...). Weekly, or at least every payday, I download the QIF file from my bank (and fix it with my perl script); I then import it. Each record is either a) matched to any entry, or b) flagged new by Quicken.
      I then scroll down the list and verify that the matched entries are the same (sometimes flipping back to the browser to see the name). Accept, Accept, UnMatch, Manual... and then I'm done. I've just reconciled my checkbook. If I had a double charge, I would (and have) see it.
      What's wrong with that picture?

      --
      "You may all go to hell and I will go to Texas"
      Sen. Davy Crocket to US Congress, Nov. 1, 1835
    2. Re:The Problem of Importing and Online Banking... by cr0sh · · Score: 1
      If Quicken does the matching and flagging, then there is nothing wrong - Quicken will flag it, and you can check from there.

      My comment wasn't about Quicken (it is nice to know that Quicken will handle the situation of double entries), but of only downloading the transactions, and not hand entering them. I can see in your case of entering the transactions, then downloading them to compare and balance - but if you are only downloading them (or only looking at an online version), and not doing your own recording - that is where the problem lies.

      I think a lot of people probably do this, to avoid having to sit down and enter transactions - assumming and trusting the bank to always be correct. Maybe the bank is flawless (though I highly doubt it), but the merchants aren't.

      It sounds like you are using the Quicken import as a "double check" as well as for balancing - this is fine - it is when you rely only upon the entries in that download (and not on what you enter) that the problem occurs...

      --
      Reason is the Path to God - Anon
  20. bzzzt! DMCA by shredwheat · · Score: 1

    Careful! You just posted a security altering device that may fall under the jurisdiction of the DMCA. Perpare for an appropriate long term prison sentence.

  21. QFX = OFX ? by Anonymous Coward · · Score: 0

    I believe the QFX format is for the most part OFX (with one proprietary tag thrown in). The tag I believe is 00002. Information on OFX can be found here: http://www.ofx.net/ofx/default.asp. If your bank supports MS OFX than adding the Intuit bastardization tag should get you up and running the MS implementation from my experiece follows the spec.

  22. It's LibOFX actually by benoitg · · Score: 1

    http://libofx.sourceforge.net/

  23. Why perl? O-V-E-R-K-I-L-L by passionplay · · Score: 1

    You're doing unfiltered transformations - sed or awk is just as good if not better.

    Perl is for doing all sorts of fancy things.

    Awk is for applying rules (unlimited on what they can do) based on regex matching.

    Sed is for linear transformations based on regex matching.

    Yours is a linear transformation and can be done in awk or sed which are basically file filters.

    sed "s/^D/C/" file | sed "s//\n/" > file.out

    Where is and is CR.

    Your mileage may vary and you may have to use a different comparator.

    Awk syntax is very similar to C in an interpreted environment, and can be done on the command line as well, or alternatively in a file. It's what C might have been like if the C interpreter had ever taken off.

    Sed and Awk are very powerful for regular expression matching. Perl to me is better used as a decision making tool than a transformation tool.

    Sed and awk also allow for back-references in the regexes if memory serves.

    My 2 cents.