View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
Singha Singha is offline
external usenet poster
 
Posts: 2
Default adding numbers with letters

Thank you Mr. Johnson!
--
Singha


"Ken Johnson" wrote:

Singha wrote:
Could you kindly please tell how I may add number with letters.
For example 29A+30A +19A

Thank you
--
Singha


Hi Singha,

If 29A is in A1, 30A in A2 and 19A in A3, then the following array
formula returns 78A...

=SUM(VALUE(LEFT(A1:A3,LEN(A1:A3)-1)))&"A"

It is an array formula so you have to enter it by simultaneously
pressing Ctrl + Shift + Enter, other wise the #VALUE error is returned.

Ken Johnson