Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 1
Default understanding of a formula

Placing a + infront of a sum means what?- eg:=+SUM(C6+C8+C10)
  #2   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 35,218
Default understanding of a formula

It usually means that the author of the formula started with Lotus 123.

In lotus, you could start a formula with +
+a1+b1

Excel starts with an equal sign:
=a1+b1

But some people have muscle memory and can't stop typing that + even though they
don't need it.

sabi wrote:

Placing a + infront of a sum means what?- eg:=+SUM(C6+C8+C10)


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 2,059
Default understanding of a formula

"sabi" wrote:
Placing a + infront of a sum means what?
eg:=+SUM(C6+C8+C10)


Nothing special. It is a carry-over from another spreadsheet application
that permitted you to enter formulas as +formula instead of =formula. Excel
translates +formula into =+formula, and some people might enter =+formula
out of habit or poor training.

However, there is no harm as long as whatever follows "+" is a numeric
expression.

But the way, it is also generally unnecessary to write SUM(expression).
That incurs unnecessary overhead (function call), with no benefit. It would
be better to write:

=C6+C8+C10

On the other hand, there is some benefit to writing SUM(C6,C8,C10). In that
case, SUM treats text as zero, where as C6+C8+C10 results in a #VALUE!
error.


  #4   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 2,480
Default understanding of a formula

Whilst you are undoubtedly correct, Dave, there can be another reason.

On a full size keyboard with numeric pad, entering +61+32 changes to =61+32
and is a lot faster than having to move your cursor up to the top row of
numbers to reach the "=" sign.
Some people who do a lot of keyboard entry, get into the habit of hitting
that "+" key, hence do the same when entering a formula and just type
+A1+B1, which Excel changes to =+A1+B1
Strange that it drops the leading "+" for numerics, but not with
alphnumerics.

--
Regards
Roger Govier

"Dave Peterson" wrote in message
...
It usually means that the author of the formula started with Lotus 123.

In lotus, you could start a formula with +
+a1+b1

Excel starts with an equal sign:
=a1+b1

But some people have muscle memory and can't stop typing that + even
though they
don't need it.

sabi wrote:

Placing a + infront of a sum means what?- eg:=+SUM(C6+C8+C10)


--

Dave Peterson


  #5   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 2,059
Default understanding of a formula

On Mar 24, 10:58 am, "Roger Govier" wrote:
Strange that it drops the leading "+" for numerics,
but not with alphnumerics.


I think it would be strange if it did. Your way makes sense. It
would be strange if Excel's often-capricious heuristics began to make
sense. If they did, I would question our sense of what makes
sense. :-) :-) :-)

PS: Thanks for the explanation. It, well, makes good sense.

PPS: In fairness to MS, wasn't this dichotomy of behavior cloned from
a market leader in spreadsheets at the time, c. 1984?



----- original posting -----

On Mar 24, 10:58*am, "Roger Govier"
<roger@technology4unospamdotcodotuk wrote:
Whilst you are undoubtedly correct, Dave, there can be another reason.

On a full size keyboard with numeric pad, entering +61+32 changes to =61+32
and is a lot faster than having to move your cursor up to the top row of
numbers to reach the "=" sign.
Some people who do a lot of keyboard entry, get into the habit of hitting
that "+" key, hence do the same when entering a formula and just type
+A1+B1, which Excel changes to =+A1+B1
Strange that it drops the leading "+" for numerics, but not with
alphnumerics.

--
Regards
Roger Govier

"Dave Peterson" wrote in message

...



It usually means that the author of the formula started with Lotus 123.


In lotus, you could start a formula with +
+a1+b1


Excel starts with an equal sign:
=a1+b1


But some people have muscle memory and can't stop typing that + even
though they
don't need it.


sabi wrote:


Placing a + infront of a sum means what?- eg:=+SUM(C6+C8+C10)


--


Dave Peterson



  #6   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 2,480
Default understanding of a formula

LOL

--
Regards
Roger Govier

"joeu2004" wrote in message
...
On Mar 24, 10:58 am, "Roger Govier" wrote:
Strange that it drops the leading "+" for numerics,
but not with alphnumerics.


I think it would be strange if it did. Your way makes sense. It
would be strange if Excel's often-capricious heuristics began to make
sense. If they did, I would question our sense of what makes
sense. :-) :-) :-)

PS: Thanks for the explanation. It, well, makes good sense.

PPS: In fairness to MS, wasn't this dichotomy of behavior cloned from
a market leader in spreadsheets at the time, c. 1984?



----- original posting -----

On Mar 24, 10:58 am, "Roger Govier"
<roger@technology4unospamdotcodotuk wrote:
Whilst you are undoubtedly correct, Dave, there can be another reason.

On a full size keyboard with numeric pad, entering +61+32 changes to
=61+32
and is a lot faster than having to move your cursor up to the top row of
numbers to reach the "=" sign.
Some people who do a lot of keyboard entry, get into the habit of hitting
that "+" key, hence do the same when entering a formula and just type
+A1+B1, which Excel changes to =+A1+B1
Strange that it drops the leading "+" for numerics, but not with
alphnumerics.

--
Regards
Roger Govier

"Dave Peterson" wrote in message

...



It usually means that the author of the formula started with Lotus 123.


In lotus, you could start a formula with +
+a1+b1


Excel starts with an equal sign:
=a1+b1


But some people have muscle memory and can't stop typing that + even
though they
don't need it.


sabi wrote:


Placing a + infront of a sum means what?- eg:=+SUM(C6+C8+C10)


--


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
Understanding formula Dig Excel Worksheet Functions 1 July 3rd 08 03:31 PM
NOT UNDERSTANDING THE FORMULA PAPABEAR2252 Excel Worksheet Functions 1 September 12th 05 05:37 PM
NOT UNDERSTANDING THE FORMULA PAPABEAR2252 Excel Worksheet Functions 3 September 10th 05 10:45 PM
Understanding a formula Jordan Excel Worksheet Functions 1 May 27th 05 05:42 AM
Understanding this formula Sal Excel Worksheet Functions 4 March 26th 05 06:32 PM


All times are GMT +1. The time now is 12:41 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"