ING Columns #28
-
Hi Niels, Thanks for creating this tool! I'm trying to set it up for my ING account however not sure how I should set up the columns. ING provides me with: Could you tell me how to do this correctly? Also, there is no column for inflow and outflow, all amounts are in one column and the previous debit/credit column indicates if its an outflow or inflow. Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi David, Here's an example of what your parser configuration could look like: - name: ing-checking
header_rows: 1
footer_rows: 0
delimiter: ";"
# Date, Payee, Account, Counterparty, Code, Debit/Credit, Amount, Transaction Type, Notifications, Resulting Balance, Tag
columns: [date,payee,skip,skip,skip,in_out_flag,amount,skip,memo,skip,skip]
outflow_indicator: "Af"
date_format: yyyy/MM/dd Note the new "in_out_flag" column and the "outflow_indicator": Hope this works for you! |
Beta Was this translation helpful? Give feedback.
Hi David,
You're going to want to try the v1.1.0 preview. This new version supports the column layout you're describing.
Here's an example of what your parser configuration could look like:
Note the new "in_out_flag" column and the "outflow_indicator":
If the value in the column "in_out_flag" is 'Af', the number in "amount" will be treated as outflow. Otherwise, ynab-bud…