Registered Member
|
Most likely, the problem is in the header though. You could put the first 15-20 lines or so in a new .qif file and try importing that. Make sure you have a complete operation and a final caret at the end. If that works, you can do a binary search: split the file after the middlemost operation. Import the top part.
- If it fails; split it again, keeping only the first quarter. - If it works, import the first half of the rest, etc. This is really fast. Keep a backup copy of your original file first. Make sure the header is the same every time and there is always a caret at the end. If you need to delete all operations from the ledger, select all at once using ctrl-A. |
Registered Member
|
Next evolution... does better, but kmm seems to have difficulties to sort dividends. Kmm creates a cash account for each portfolio. Dividends are transfered directly from the portfolio to a bank account while they also appear in the cash account. Can anybody confirm? Any Idea how to get rid of it?
This is probably one of the last mistakes while this works quite well with most regular accounts and some portfolios as well:
|
Registered Member
|
Investment accounts cannot contain cash. You should really create a brokerage account for every investment account to handle cash. If you create an investment account, the gui asks if you want it. I think it is not possible to add it afterwards. I suspect your QIF file does not specify where the interest needs to go. KMM will send it to the brokerage account, but there is also a line in the Investment account ledger. This is OK though, as it the latter just represents the operation, not the amount. Here is what the QIF for a dividend should look like
I am not sure if the regexp /^!Type:/ in your sed file is correct though. Maybe you mean /^Type:/! which matches all lines that do not start with the string Type: If you do not want to substitute on lines starting with Type:, you can replace the first string /^T/ by /^T\>/, indicating you want a T in the first column that is also the end of a word. |
Registered Member
|
Hi Zebulon,
thanks for the hint ... it seems the problem is with DivX, SellX etc. If money gets transferred directly from investment to another bank account, then probably the booking from the equivalent transfer in the bank account is booked to the brokerage account. So I got rid of all DivX etc. -> made them to normal Div. This Works. BUT With SellX -> Sell kmm does not ignore the L line and treats it as SellX Can you give me a RegExp that deletes the L Line in i.e. a SellX like this? D6.16.10 NSellX YBerliner Volksbank Genossen I52 Q1.04 U54.08 T54.08 MSch�tzpreis 16.06.10 L[Vb Mittelhessen] $54.08 ^ Thanks in advance |
Registered Member
|
Hi,
I don't have SellX, but I did have DivX. Here is an example that posed no problem for me Anyway, as for your sed request, this should work: Some explanation: I define a range of lines between two strings. The start of the range is a line starting with "NSellX", and the end of the range is a line starting with a caret (the caret itself represents the start of the line, but two carets can only mean one thing). In this range, I delete any line starting with "L". |
Registered Member
|
Advancing... rearranging...
need your help again with RegExp comma2dot does what it says, but... if its more then a 1000 Q1.243,2069 konverts to Q1.243.2069 instead of Q1243.2069 or Q1,243.2069 I need to kill existing points before or transfer to comma (but then not convert again, of course) It seems I am having this in just one case - but if this is going to be a filter for others also... we`d better make it right |
Registered Member
|
Replace the original substitute command by this:
I added the "g" option for numbers over one million which may have two dots. |
Registered Member
|
Success!
did you know, that there are transactions in the quicken ledger, that do not appear in an qif export? Seems to happen with transactions that are left in remaining accounts when you delete another account. Here are my lessons learned: Create your investment accounts and securities (do not leave identifiers empty, if you do that by generating an qif file by hand) Export qif from quicken (all accounts, all trancactions, all categories in one file) konvert the exported file with sed
import the konverted qif ignore all messages "Konto Account has invalid type" but take care for all others. investment accounts get doubbled and one of the cash accounts will have double transactions - take look wich accout is unecessary and delete all transactions in it. that`s it, basically. I had to do a lot of cleansing in my old quicken transactions, though (see above). I would suggest that the german identifiers for investment transaction get into the code of kmm. The strange comma and dot usage in the fields is probably specific to german quicken 2008. I suggest to deliver the IQ section of the filter as an specific filter "german quicken 2008" with kmm , so everybody could try if this option does any good for them. Is there a way to get this sarted? AND Thanks a big lot, Zebulon! |
Registered users: Bing [Bot], Google [Bot], Sogou [Bot]