Hello!
I just tried to generate a BOM. I used the simplest method, described by Rene in a FAQ. Basically it works, but the csv format is screwed up. All the commas are replaced with semicolons, and the BOM looks like this. All the items are in column A. I used a text editor and replaced all the semi colons, and it’s fixed. See second picture.
Is there a way to configure the separator as a comma?
It should not really matter which separator the file uses. You can configure it on import to excel or calc.
You did not state which bom generator script you used. Maybe there is a better one already included with kicad. (Or you might need one of the more powerful tools developed by the community.)
I have exactly the opposite problem, excel recognizes a CSV file with a “;” separator, but if the separator is a “,” then gives me the result that you show.
I have 3 workarounds for this problem, the first one is to open the file an add the following line to the top of the line “sep=;” without the quotes, when excel tries to open the file it will use the “;” automatically as the separator.
The second approach is to change the file extension from CSV to TXT, this way, when you try to open the file in excel, the import dialog will be shown, where you can select the appropriate separator for the file.
Third approach is to edit the python script that generates this file to change the default separator from “;” to “,”.
Hello!
Thanks for your replies. I didn’t know I could configure csv files. I thought it was “comma separated values” or something like that, and that it had to be a comma.
Pascal