View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
Pete_UK Pete_UK is offline
external usenet poster
 
Posts: 8,856
Default Referencing whole column

Well, it's slightly less typing to do =A1+B1 (6 characters) than =A:A
+B:B (8 characters).

If you wanted to, though, you could define a named range "An" to cover
A1:A10 and another named range "Bn" to cover B1:B10, then you could
have a formula like:

=An+Bn

in C1 and copy this down.

Hope this helps.

Pete

On Nov 23, 8:30 pm, Christina
wrote:
Let's say there are numbers in cells A1:A10 and B1:B10 and you create a
simple formula to add two cells =A1+B1 and copy it down. Is there a
compelling reason to use specific cell references for something like this
rather than =A:A+B:B?