Thanks all. Tried what you suggested and got the entire dump. However it did get me to thinking a bit and tried using 'grep' through the Terminal on the entire account dump. In my case, all of the transactions that I wanted were categorized as "Medical" . So I ran
grep Medi Trans.txt > Med.csv
from the Terminal. This found every line that contained the pattern 'Medi' and ignored the rest. The greater than sign redirected the output from grep to an ASCII file I called 'Med.csv' which is then openable by any spreadsheet application. Removed extraneous columns and now I have the Dates, Payee, Amount for the entire year. May this help others as well. Al ( oh yeah, happy gnu year! )
PS: Ran this for all of my accounts and have to make a minor note. Since you get all years worth, you'll have to purge rows in the spreadsheet for prior years work. Because of how Splasm denotes "taxable" with a Yes / No , you can't grep for Yes as you'll get every cleared transaction. al
|