My How to:
I got non-english Excel, and do as following (and it works):
-Put my data in to Excel in each cells, like this.
(PS: Price in NOK = norwegian krones)
(I save the first line of data from earlier, so I have something to work after.)
odometer,litres,price,fuelup_date,partial_fuelup,m issed_fuelup,notes
123456,50.24,14.58,2013-11-12,1,0,
216584 17,42 13,72 2014-05-04 0
216794 15,15 15,47 2014-05-15 0
216931 41,14 13,97 2014-05-19 0
217314 10,00 15,53 2014-05-27 0
217376 47,44 13,59 2014-06-02 1
217819 10,61 14,39 2014-06-14 0
Then Save as CSV3.
Open File explorer, right-click on this file, choose Edit.
File opens in Notepad, and it look like this:
odometer,litres,price,fuelup_date,partial_fuelup,m issed_fuelup,notes;;;;;
123456,50.24,14.58,2013-11-12,1,0,;;;;;
216584;17,42;13,72;2014-05-04;0;
216794;15,15;15,47;2014-05-15;0;
216931;41,14;13,97;2014-05-19;0;
217314;10,00;15,53;2014-05-27;0;
217376;47,44;13,59;2014-06-02;1;
217819;10,61;14,39;2014-06-14;0;
Do some corrections, and I got my fuel-ups ready to import. Remember to Save.
Changes:
; to ,
, to .
add at end of line 0,;;;;
odometer,litres,price,fuelup_date,partial_fuelup,m issed_fuelup,notes;;;;
216584,17.42,13.72,2014-05-04,0,0,Estimert kilometer;;;;
216794,15.15,15.47,2014-05-15,0,0,;;;;
216931,41.14,13.97,2014-05-19,0,0,;;;;
217314,10.00,15.53,2014-05-27,0,0,;;;;
217376,47.44,13.59,2014-06-02,1,0,;;;;
217819,10.61,14.39,2014-06-14,0,0,;;;;
May this help someone....