hildogjr / KiCost

Build cost spreadsheet for a KiCad project.
MIT License
520 stars 97 forks source link

Fix distcnt #400

Closed mdeweerd closed 4 years ago

mdeweerd commented 4 years ago

There is a formula error because of a missing parentheses.

I had some trouble finding this one ... I unzipped the original xlsx and fixed xlsx to find the missing formula

    '=(COUNTA({count_range})&" of "&ROWS({count_range})&" parts found"'

becomes

     '=(COUNTA({count_range})&" of "&ROWS({count_range})&" parts found")'