Open GoogleCodeExporter opened 9 years ago
Just as an FYI,
As an example I have attached a stock price download from Hargreaves &
Lansdown, let me know if you need any further info or if I can help in any way
Original comment by progers...@hotmail.com
on 27 Jun 2011 at 5:24
Attachments:
This will be awesome . I am thinking if we can get the csv from Yodlee and
convert them to OFX to be imported in MS money.
Original comment by uman...@gmail.com
on 19 Jul 2011 at 7:07
Can I see the code of macro that convert csv to ofx entry
Original comment by uman...@gmail.com
on 19 Jul 2011 at 7:08
Hello,
You are more than welcome to the code see the attached files (the example csv
from Hargreaves Lansdown is already attached in a prior comment).
The necessary disclaimer to use this at your own peril, I am not a programmer
so the code is not neat as I have cobbled it together from various google
searches to accomplish what I wanted, although I have put notes in the code,
if you can improve on the code please publish.
Some notes:-
The Excel Macros have been updated have been updated since the issue was opened
and now performs 3 functions but, from your request you probably only need the
first:-
1) changes the downloaded csv from Hargreaves Lansdown to the same format as
that downloaded from FT.com and saves it as "hleOfx Import.csv"
2) changes the downloaded csv from Hargreaves Lansdown to the same format as
that of the quoutes.csv that is produced by "
hleOfxQuotes-Build_20110706_31-app" which is used by the Sunrriise project "
sunriise-Build_20110706_31-app " to directly update stock prices in .mny and
saves it as "QuotesImport.csv"; This is still experimental but looks like
being a major feature.
3) runs batch files which runs " sunriise-Build_20110706_31-app" to import
"QuotesImport.csv" into .mny and creates logs of the import.
The code presets the import Folder and save Folder locations but you can still
browse to new locations from there or remove/update the presets in the code.
None of this would have been possible without the outstanding work performed by
the developer who has my heartfelt thanks.
Regards
Paul
Original comment by progers...@hotmail.com
on 20 Jul 2011 at 8:07
Attachments:
I forgot to mention for the second function above:-
2) changes the downloaded csv from Hargreaves Lansdown to the same format as
that of the quoutes.csv that is produced by "
hleOfxQuotes-Build_20110706_31-app" which is used by the Sunrriise project "
sunriise-Build_20110706_31-app " to directly update stock prices in .mny and
saves it as "QuotesImport.csv";
The prices I am downloading from Hargreaves Lansdown are All Fund prices which
are not real time and are updated at midnight so are for the day before the
date/time that is in the downloaded csv so I correct for this using:-
' Subtract one business day as Fund prices are previous working day
ActiveCell.Value = Application.WorksheetFunction.WorkDay(ActiveCell, -1)
Regards
Paul
Original comment by progers...@hotmail.com
on 20 Jul 2011 at 8:26
Original issue reported on code.google.com by
hle...@gmail.com
on 27 Jun 2011 at 2:54