Re: DVDpedia 4.5.4: Date issue at CSV import
Posted: Thu Jan 14, 2010 4:19 pm
Hi André,
I got the same problem when importing my music collection in CDpedia. So I modified all columns with date in the CSV file with Excel. I used the string function STX to extract part of the date. STX need argument: STX(string, start position, number of characters). You extract the portions of the string you need and write them in another order in a new column.
If for example you have a date field in column H, insert a new column just after this one. If the cells H2 to H450 (H1 is probably the title) contain date with the format dd.mm.yy then write the following formula in the second row of the new column I:
=STXT(H2;4;3)&STXT(H2;1;3)&STXT(H2;7;2)
and you will have date in format mm.dd.yy in the cell I2
If you are happy with this result, copy the formula to all cells under I2 by dragging the little square on the right bottom corner of cell I2 till the end of the column.
Note: in order to work, all date field should be in text format inside Excel.
Claude
I got the same problem when importing my music collection in CDpedia. So I modified all columns with date in the CSV file with Excel. I used the string function STX to extract part of the date. STX need argument: STX(string, start position, number of characters). You extract the portions of the string you need and write them in another order in a new column.
If for example you have a date field in column H, insert a new column just after this one. If the cells H2 to H450 (H1 is probably the title) contain date with the format dd.mm.yy then write the following formula in the second row of the new column I:
=STXT(H2;4;3)&STXT(H2;1;3)&STXT(H2;7;2)
and you will have date in format mm.dd.yy in the cell I2
If you are happy with this result, copy the formula to all cells under I2 by dragging the little square on the right bottom corner of cell I2 till the end of the column.
Note: in order to work, all date field should be in text format inside Excel.
Claude