SVN commit 1108708 by mikearthur: Set #PARSE correctly when an a formula could not be parsed. M +2 -0 DependencyManager.cpp --- branches/work/koffice-ko/kspread/DependencyManager.cpp #1108707:1108708 @@ -163,6 +163,8 @@ int depth = d->computeDepth(cell); d->depths.insert(cell , depth); } + if (!sheet->formulaStorage()->data(c).isValid()) + cell.setValue(Value::errorPARSE()); } } }