Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(formula): subtotal count #2452

Open
wants to merge 9 commits into
base: dev
Choose a base branch
from
Prev Previous commit
Next Next commit
fix(formula): calculation cache
  • Loading branch information
Dushusir committed Jun 17, 2024
commit 83be606ba8f5d6fa92d27070c74d1a96a15718de
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ export class FormulaDependencyGenerator extends Disposable {
throw new Error('astNode is null');
}

this._formulaASTCache.set(`${unitId}${formulaString}##${refOffsetX}${refOffsetY}`, astNode);
this._formulaASTCache.set(`${unitId}${formulaString}##${refOffsetX}-${refOffsetY}`, astNode);

return astNode;
}
Expand Down