--- eeschema/dialogs/dialog_build_BOM.cpp 2013-03-26 19:54:46.218022000 +0200 +++ eeschema/dialogs/dialog_build_BOM.cpp 2013-03-27 10:32:00.290931250 +0200 @@ -481,7 +481,7 @@ bom_lister.SetCvsFormOn( s_ExportSeparatorSymbol ); // Set the list of fields to add to list - for( int ii = FOOTPRINT; ii < FIELD8; ii++ ) + for( int ii = FOOTPRINT; ii <= FIELD8; ii++ ) if( IsFieldChecked( ii ) ) bom_lister.AddFieldIdToPrintList( ii ); // Write the list of components grouped by values: @@ -530,7 +530,7 @@ aIncludeSubComponents ); // Set the list of fields to add to list - for( int ii = FOOTPRINT; ii < FIELD8; ii++ ) + for( int ii = FOOTPRINT; ii <= FIELD8; ii++ ) if( IsFieldChecked( ii ) ) bom_lister.AddFieldIdToPrintList( ii ); @@ -564,7 +564,7 @@ bom_lister.SetCvsFormOff(); bom_lister.SetPrintLocation( s_Add_Location ); // Set the list of fields to add to list - for( int ii = FOOTPRINT; ii < FIELD8; ii++ ) + for( int ii = FOOTPRINT; ii <= FIELD8; ii++ ) if( IsFieldChecked( ii ) ) bom_lister.AddFieldIdToPrintList( ii );