diff options
Diffstat (limited to 'sc/source/core/tool/interpr1.cxx')
-rw-r--r-- | sc/source/core/tool/interpr1.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sc/source/core/tool/interpr1.cxx b/sc/source/core/tool/interpr1.cxx index b9e3d122e7c2..df65daa693fe 100644 --- a/sc/source/core/tool/interpr1.cxx +++ b/sc/source/core/tool/interpr1.cxx @@ -253,6 +253,11 @@ void ScInterpreter::ScIfError( bool bNAonly ) { default: Pop(); + // Act on implicitly propagated error, if any. + if (nOldGlobalError) + nGlobalError = nOldGlobalError; + if (nGlobalError) + bError = true; break; case svError: PopError(); |