I encountered the same date problem when importing from
Quicken, and there is no workaround. To fix it, the date
pattern match in file import.pl must be modified.
In the import_qif_account subroutine in file import.pl,
locate this line of code:
($month, $day, $year) =
/^D(\d+)\s*\/\s*(\d+)\s*\/\s*(\d+)/;
Comment it out or replace as follows:
($month, $day, $year) =
/\s*(\d+)\/\s*(\d+)\W\s*(\d+)/;
Remember to make a backup copy prior to making any changes!
Hope this helps.
Ed
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=1070180
I encountered the same date problem when importing from
Quicken, and there is no workaround. To fix it, the date
pattern match in file import.pl must be modified.
In the import_qif_account subroutine in file import.pl,
locate this line of code:
($month, $day, $year) =
/^D(\d+)\s*\/\s*(\d+)\s*\/\s*(\d+)/;
Comment it out or replace as follows:
($month, $day, $year) =
/\s*(\d+)\/\s*(\d+)\W\s*(\d+)/;
Remember to make a backup copy prior to making any changes!
Hope this helps.
Ed