Thanks Gord - any reason why I can no longer format the values to 2 decimal
places? I am returned 429.48689375 ± 470.313519234978 even though the cells
on both sheets are specified as number, 2 decimal places...
> Krista
>
[quoted text clipped - 19 lines]
> >> > For clarity, I am trying to merge a mean and sd from two separate columns...
> >> > Using Excel 07 - Any suggestions would be super!
Martin Fishlock - 08 Mar 2007 00:58 GMT
Krista,
use the following instead of "general" with the quotes
"#,##0.00" 'for 1,234.45 or -1,234.45
"#,##0.00_);(#,##0.00)" 'for 1,234.45 or (1,234.45)
"#,##0.00_);(#,##0.00);""-""_)" 'for 1,234.45 or (1,234.45) or - (for 0)
the format is positive;negative;zero;text
play around with the macro recorder to see differewnt styles.

Signature
Hope this helps
Martin Fishlock, Bangkok, Thailand
Please do not forget to rate this reply.
> Thanks Gord - any reason why I can no longer format the values to 2 decimal
> places? I am returned 429.48689375 ± 470.313519234978 even though the cells
[quoted text clipped - 23 lines]
> > >> > For clarity, I am trying to merge a mean and sd from two separate columns...
> > >> > Using Excel 07 - Any suggestions would be super!
Gord Dibben - 08 Mar 2007 00:59 GMT
Try this version.
=TEXT(Sheet2!A1,"#,##0.00")&CHAR(177)&TEXT(Sheet2!A2,"#,##0.00")
Because you have turned the numbers into Text you have lost the 2 DP formatting
so must re-create it in the formula.
Gord
>Thanks Gord - any reason why I can no longer format the values to 2 decimal
>places? I am returned 429.48689375 ± 470.313519234978 even though the cells
[quoted text clipped - 23 lines]
>> >> > For clarity, I am trying to merge a mean and sd from two separate columns...
>> >> > Using Excel 07 - Any suggestions would be super!