Skip to content

Feature request: Detect if a cell ist still to be calculated on manual calculation mode #113

Description

@jochenwezel

After deactivating automatic calculcation and after inserting/replacing some cell formulas and in the end of larger bulk changes, I sometimes need to know if a cell finally requires recalculation.

For this, I implemented method HasMissingCachedCalculatedFormulaValue as following:

ExcelRangeBase.cs

publicboolHasMissingCachedCalculatedFormulaValue(){returnHasMissingCachedCalculatedFormulaValue(this,_fromRow,_fromCol);}publicstaticboolHasMissingCachedCalculatedFormulaValue(ExcelRangeBaserange,introw,intcol){if(!string.IsNullOrEmpty(range._worksheet.GetFormula(row,col)))return(range._worksheet.GetValueInner(row,col)==null);elsereturnfalse;}

Would be nice to find this or similar functionality in one of your next releases :-)

Metadata

Metadata

Labels

alt-enhancementalternative enchancement label for organization purposes

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions