Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 168
Default Named Cell versus Cell Reference

If I'm referring to a cell many times in a workbook, is there any difference
between linking to the cell reference (ie $A$3) or naming the cell and
linking to the name? Would it speed up calculations to link to a name?

Thanks

Adam Bush
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Named Cell versus Cell Reference

Just my guess...

I'd bet any difference in calculation would close to unnoticeable by the human
eye. I think the better reason for doing it is to make updates easier. And
using a nice name can make the formula much more self-documenting, too.


wrote:

If I'm referring to a cell many times in a workbook, is there any difference
between linking to the cell reference (ie $A$3) or naming the cell and
linking to the name? Would it speed up calculations to link to a name?

Thanks

Adam Bush


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 168
Default Named Cell versus Cell Reference

Dave,

How about if I have a very long formula with if statements. Would it speed
up calculations to create a function in VBA rather than putting this long
formula in every cell?

Thanks

Adam Bush

"Dave Peterson" wrote:

Just my guess...

I'd bet any difference in calculation would close to unnoticeable by the human
eye. I think the better reason for doing it is to make updates easier. And
using a nice name can make the formula much more self-documenting, too.


wrote:

If I'm referring to a cell many times in a workbook, is there any difference
between linking to the cell reference (ie $A$3) or naming the cell and
linking to the name? Would it speed up calculations to link to a name?

Thanks

Adam Bush


--

Dave Peterson

  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,440
Default Named Cell versus Cell Reference

<Would the UDF improve this?

Almost certainly not. It is very hard to get even near the speed of Excels intrinsic calculations, both formulas and functions.

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

" m wrote in message
...
| Dave,
|
| But I'm not using a function built into excel, I'm using a formula with six
| if statements and several polynomials. Would the UDF improve this?
|
| Thanks
|
| Adam Bush
|
| "Dave Peterson" wrote:
|
| My bet is no.
|
| For the most part, UDFs are much slower than using the functions built into
| excel.
|
| You may want to read Charles Williams' notes on calculation:
| http://www.decisionmodels.com/calcsecrets.htm
|
| wrote:
|
| Dave,
|
| How about if I have a very long formula with if statements. Would it speed
| up calculations to create a function in VBA rather than putting this long
| formula in every cell?
|
| Thanks
|
| Adam Bush
|
| "Dave Peterson" wrote:
|
| Just my guess...
|
| I'd bet any difference in calculation would close to unnoticeable by the human
| eye. I think the better reason for doing it is to make updates easier. And
| using a nice name can make the formula much more self-documenting, too.
|
|
|
wrote:
|
| If I'm referring to a cell many times in a workbook, is there any difference
| between linking to the cell reference (ie $A$3) or naming the cell and
| linking to the name? Would it speed up calculations to link to a name?
|
| Thanks
|
| Adam Bush
|
| --
|
| Dave Peterson
|
|
| --
|
| Dave Peterson
|


  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 168
Default Named Cell versus Cell Reference

Niek,

The reason I'm asking this is I have an entire worksheet that does
calculations for a formula that can all be condensed in VBA. This would save
me a pretty large worksheet worth of calculations. Do you think this would
speed up my workbook at all if I got rid of this extra worksheet?

Thanks

Adam Bush

"Niek Otten" wrote:

<Would the UDF improve this?

Almost certainly not. It is very hard to get even near the speed of Excels intrinsic calculations, both formulas and functions.

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

" m wrote in message
...
| Dave,
|
| But I'm not using a function built into excel, I'm using a formula with six
| if statements and several polynomials. Would the UDF improve this?
|
| Thanks
|
| Adam Bush
|
| "Dave Peterson" wrote:
|
| My bet is no.
|
| For the most part, UDFs are much slower than using the functions built into
| excel.
|
| You may want to read Charles Williams' notes on calculation:
| http://www.decisionmodels.com/calcsecrets.htm
|
| wrote:
|
| Dave,
|
| How about if I have a very long formula with if statements. Would it speed
| up calculations to create a function in VBA rather than putting this long
| formula in every cell?
|
| Thanks
|
| Adam Bush
|
| "Dave Peterson" wrote:
|
| Just my guess...
|
| I'd bet any difference in calculation would close to unnoticeable by the human
| eye. I think the better reason for doing it is to make updates easier. And
| using a nice name can make the formula much more self-documenting, too.
|
|
|
wrote:
|
| If I'm referring to a cell many times in a workbook, is there any difference
| between linking to the cell reference (ie $A$3) or naming the cell and
| linking to the name? Would it speed up calculations to link to a name?
|
| Thanks
|
| Adam Bush
|
| --
|
| Dave Peterson
|
|
| --
|
| Dave Peterson
|



  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,440
Default Named Cell versus Cell Reference

Hi Adam,

Most tests show that the number of formulas to be evaluated is more important for performance than the complexity of the formulas
itself. So that makes you think that missing an entire sheets should help.
But then again, UDFs are mostly much slower than comparable formulas.

Why not try? Do let us know your findings!

BTW, if performance is a problem, visit Charles Williams' site for lots of tips and information:

www.decisionmodels.com

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

" m wrote in message
...
| Niek,
|
| The reason I'm asking this is I have an entire worksheet that does
| calculations for a formula that can all be condensed in VBA. This would save
| me a pretty large worksheet worth of calculations. Do you think this would
| speed up my workbook at all if I got rid of this extra worksheet?
|
| Thanks
|
| Adam Bush
|
| "Niek Otten" wrote:
|
| <Would the UDF improve this?
|
| Almost certainly not. It is very hard to get even near the speed of Excels intrinsic calculations, both formulas and
functions.
|
| --
| Kind regards,
|
| Niek Otten
| Microsoft MVP - Excel
|
| " m wrote in message
| ...
| | Dave,
| |
| | But I'm not using a function built into excel, I'm using a formula with six
| | if statements and several polynomials. Would the UDF improve this?
| |
| | Thanks
| |
| | Adam Bush
| |
| | "Dave Peterson" wrote:
| |
| | My bet is no.
| |
| | For the most part, UDFs are much slower than using the functions built into
| | excel.
| |
| | You may want to read Charles Williams' notes on calculation:
| | http://www.decisionmodels.com/calcsecrets.htm
| |
| | wrote:
| |
| | Dave,
| |
| | How about if I have a very long formula with if statements. Would it speed
| | up calculations to create a function in VBA rather than putting this long
| | formula in every cell?
| |
| | Thanks
| |
| | Adam Bush
| |
| | "Dave Peterson" wrote:
| |
| | Just my guess...
| |
| | I'd bet any difference in calculation would close to unnoticeable by the human
| | eye. I think the better reason for doing it is to make updates easier. And
| | using a nice name can make the formula much more self-documenting, too.
| |
| |
| |
wrote:
| |
| | If I'm referring to a cell many times in a workbook, is there any difference
| | between linking to the cell reference (ie $A$3) or naming the cell and
| | linking to the name? Would it speed up calculations to link to a name?
| |
| | Thanks
| |
| | Adam Bush
| |
| | --
| |
| | Dave Peterson
| |
| |
| | --
| |
| | Dave Peterson
| |
|
|
|


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Vlookup - using a cell to reference a named array Ronin Excel Worksheet Functions 3 May 14th 08 06:26 PM
Copying a named range with a changing cell reference [email protected] New Users to Excel 1 February 21st 08 07:49 AM
reference first cell in a named range Robert H Excel Worksheet Functions 3 January 14th 08 07:53 PM
HOW TO EXTRACT CELL REFERENCE AS TEXT FROM NAMED RANGE romelsb Excel Worksheet Functions 0 November 3rd 06 09:49 PM
Named Range reference via single Cell Graham Excel Discussion (Misc queries) 0 July 26th 06 09:37 AM


All times are GMT +1. The time now is 05:20 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"