I am trying to create a transaction in a QIF file in Perl. I thought that using Finance::QIF would let me create a simple transaction (example: spending $20 at Best Buy), but I'm not seeing a way to do this.

Does someone have an example or is there a difference module that I should be using to create a transaction?

Thanks!

--Noah

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

While the documentation doesn't have any examples of writing a record, the tests do. I modified this from the test file:

  my $out = Finance::QIF->new( file => ">" . $somefile, );
  my $record = {
      header      => "Type:Bank",
      date        => "8/26/09",
      payee       => "Best Buy",
      memo        => "",
      transaction => "-20.00",
      address     => "",
      category    => "Entertainment",
  };
  $out->header( $record->{header} );
  $out->write($record);
  $out->close;
link|improve this answer
Need a comma after "8/26/09".. Besides that it works great!! – NoahD Aug 26 '09 at 19:41
Whoops. Updated my answer. Thanks. – seth Aug 26 '09 at 19:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.