navferty / NavfertyExcelAddIn

Common tools for MS Excel
MIT License
47 stars 6 forks source link

Fix an error when working with a single cell using the ParseNumerics Function. #38

Closed IgorKhudiakov closed 4 years ago

IgorKhudiakov commented 4 years ago

If the cell value is already represented in decimal (double) form, the function stops working further.

if (!(rangeValue is double))
{
//code
//...
//...
}

It's a blunt crutch, please don't laugh.