Excel multiline formulas

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Add Cell local variables. Allow a cell to have multiline formulas, which can
speed up calculations such as those that use large SUMPRODUCT() queries.

For example, instead of :
=if(SUM('DO 4 MDSE:Blank'!C4),SUM('DO 4 MDSE:Blank'!C4),NA())

allow:
;TempVar=SUM('DO 4 MDSE:Blank'!C4);=If (TempVar, TempVar, NA())


----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/com...dg=microsoft.public.excel.worksheet.functions
 
Try Insert>Name>Define, Names in Workbook - TempVar, Refres to -
=SUM('DO 4 MDSE:Blank'!$C$4).
Now you can use TempVar in a formula as you have requested.
PS the $ signs are important.

Regards
Rowan
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top