View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
David Biddulph
 
Posts: n/a
Default Format problem ( SUM & "text")

"Ed" wrote in message
...
Hello, I have a cell in which I have as a formula

=SUM(A1:A10)&" ft2"

and I have a similar formula in other cells, some have as a result 2
decimal
places, others have 5 others 6 and so on, and I can't find a way to make
them
all have 2, any ideas?


If you want the SUM to have 2 decimal places, try
=TEXT(SUM(A1:A10),"0.00")&" ft2"
--
David Biddulph