View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.misc
David Biddulph[_2_] David Biddulph[_2_] is offline
external usenet poster
 
Posts: 8,651
Default what does the += operator do? cannot find any help on it.

+= is not valid syntax, and will not be accepted without correction.
=+ is valid, but =+A1+B1 is just the same as =A1+B1
Some people write the formula as +A1+B1 (without the = sign), but Excel will
interpret it as =A1+B1

Use of the + in such situations is a relic from old Lotus spreadsheet
applications.

[Next time, please remember to as your question in the body of the message,
not just in the subject line.]
--
David Biddulph

"dwneumann" wrote in message
...