Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default insert a symbol into a function cell

I am trying to merge two cells together from a different worksheet with the
values separated by the plus/minus symbol into one cell. I would also like
to retain the auto-update portion of if those values change in that sheet
they will in this new worksheet as well...

For clarity, I am trying to merge a mean and sd from two separate columns...
Using Excel 07 - Any suggestions would be super!
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 694
Default insert a symbol into a function cell

Try using this =text(sheet2!a1,"general")&"+"&text(sheet2!a2,"gen eral")
--
Hope this helps
Martin Fishlock, Bangkok, Thailand
Please do not forget to rate this reply.


"Krista F" wrote:

I am trying to merge two cells together from a different worksheet with the
values separated by the plus/minus symbol into one cell. I would also like
to retain the auto-update portion of if those values change in that sheet
they will in this new worksheet as well...

For clarity, I am trying to merge a mean and sd from two separate columns...
Using Excel 07 - Any suggestions would be super!

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default insert a symbol into a function cell

Thanks Martin,

That works with "+" but I am actually trying to insert the symbol "±".
Seems once you invoke the function (=) feature the use of symbols or special
characters is prohibited?


"Martin Fishlock" wrote:

Try using this =text(sheet2!a1,"general")&"+"&text(sheet2!a2,"gen eral")
--
Hope this helps
Martin Fishlock, Bangkok, Thailand
Please do not forget to rate this reply.


"Krista F" wrote:

I am trying to merge two cells together from a different worksheet with the
values separated by the plus/minus symbol into one cell. I would also like
to retain the auto-update portion of if those values change in that sheet
they will in this new worksheet as well...

For clarity, I am trying to merge a mean and sd from two separate columns...
Using Excel 07 - Any suggestions would be super!

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 694
Default insert a symbol into a function cell

Try:
="±"&TEXT(Sheet2!A1,"general")&"±"&TEXT(Sheet2!A 2,"general")
(i just copied the character from your email)

or

=CHAR(241)&TEXT(Sheet2!A1,"general")&CHAR(241)&TEX T(Sheet2!A2,"general")


Hope this helps
Martin Fishlock, Bangkok, Thailand
Please do not forget to rate this reply.


"Krista F" wrote:

Thanks Martin,

That works with "+" but I am actually trying to insert the symbol "±".
Seems once you invoke the function (=) feature the use of symbols or special
characters is prohibited?


"Martin Fishlock" wrote:

Try using this =text(sheet2!a1,"general")&"+"&text(sheet2!a2,"gen eral")
--
Hope this helps
Martin Fishlock, Bangkok, Thailand
Please do not forget to rate this reply.


"Krista F" wrote:

I am trying to merge two cells together from a different worksheet with the
values separated by the plus/minus symbol into one cell. I would also like
to retain the auto-update portion of if those values change in that sheet
they will in this new worksheet as well...

For clarity, I am trying to merge a mean and sd from two separate columns...
Using Excel 07 - Any suggestions would be super!

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default insert a symbol into a function cell

Krista

Add it to the formula.

=text(sheet2!a1,"general")&CHAR(177)&text(sheet2!a 2,"general")


Gord Dibben MS Excel MVP

On Wed, 7 Mar 2007 15:41:13 -0800, Krista F
wrote:

Thanks Martin,

That works with "+" but I am actually trying to insert the symbol "±".
Seems once you invoke the function (=) feature the use of symbols or special
characters is prohibited?


"Martin Fishlock" wrote:

Try using this =text(sheet2!a1,"general")&"+"&text(sheet2!a2,"gen eral")
--
Hope this helps
Martin Fishlock, Bangkok, Thailand
Please do not forget to rate this reply.


"Krista F" wrote:

I am trying to merge two cells together from a different worksheet with the
values separated by the plus/minus symbol into one cell. I would also like
to retain the auto-update portion of if those values change in that sheet
they will in this new worksheet as well...

For clarity, I am trying to merge a mean and sd from two separate columns...
Using Excel 07 - Any suggestions would be super!




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default insert a symbol into a function cell

It works using the & CHAR() function! Although it automatically increases
the values to 8 decimal places...

Thanks for your help! Much appreciated.

"Martin Fishlock" wrote:

Try:
="±"&TEXT(Sheet2!A1,"general")&"±"&TEXT(Sheet2!A 2,"general")
(i just copied the character from your email)

or

=CHAR(241)&TEXT(Sheet2!A1,"general")&CHAR(241)&TEX T(Sheet2!A2,"general")


Hope this helps
Martin Fishlock, Bangkok, Thailand
Please do not forget to rate this reply.


"Krista F" wrote:

Thanks Martin,

That works with "+" but I am actually trying to insert the symbol "±".
Seems once you invoke the function (=) feature the use of symbols or special
characters is prohibited?


"Martin Fishlock" wrote:

Try using this =text(sheet2!a1,"general")&"+"&text(sheet2!a2,"gen eral")
--
Hope this helps
Martin Fishlock, Bangkok, Thailand
Please do not forget to rate this reply.


"Krista F" wrote:

I am trying to merge two cells together from a different worksheet with the
values separated by the plus/minus symbol into one cell. I would also like
to retain the auto-update portion of if those values change in that sheet
they will in this new worksheet as well...

For clarity, I am trying to merge a mean and sd from two separate columns...
Using Excel 07 - Any suggestions would be super!

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default insert a symbol into a function cell

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...




"Gord Dibben" wrote:

Krista

Add it to the formula.

=text(sheet2!a1,"general")&CHAR(177)&text(sheet2!a 2,"general")


Gord Dibben MS Excel MVP

On Wed, 7 Mar 2007 15:41:13 -0800, Krista F
wrote:

Thanks Martin,

That works with "+" but I am actually trying to insert the symbol "±".
Seems once you invoke the function (=) feature the use of symbols or special
characters is prohibited?


"Martin Fishlock" wrote:

Try using this =text(sheet2!a1,"general")&"+"&text(sheet2!a2,"gen eral")
--
Hope this helps
Martin Fishlock, Bangkok, Thailand
Please do not forget to rate this reply.


"Krista F" wrote:

I am trying to merge two cells together from a different worksheet with the
values separated by the plus/minus symbol into one cell. I would also like
to retain the auto-update portion of if those values change in that sheet
they will in this new worksheet as well...

For clarity, I am trying to merge a mean and sd from two separate columns...
Using Excel 07 - Any suggestions would be super!



  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 694
Default insert a symbol into a function cell

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.



--
Hope this helps
Martin Fishlock, Bangkok, Thailand
Please do not forget to rate this reply.


"Krista F" wrote:

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...




"Gord Dibben" wrote:

Krista

Add it to the formula.

=text(sheet2!a1,"general")&CHAR(177)&text(sheet2!a 2,"general")


Gord Dibben MS Excel MVP

On Wed, 7 Mar 2007 15:41:13 -0800, Krista F
wrote:

Thanks Martin,

That works with "+" but I am actually trying to insert the symbol "±".
Seems once you invoke the function (=) feature the use of symbols or special
characters is prohibited?


"Martin Fishlock" wrote:

Try using this =text(sheet2!a1,"general")&"+"&text(sheet2!a2,"gen eral")
--
Hope this helps
Martin Fishlock, Bangkok, Thailand
Please do not forget to rate this reply.


"Krista F" wrote:

I am trying to merge two cells together from a different worksheet with the
values separated by the plus/minus symbol into one cell. I would also like
to retain the auto-update portion of if those values change in that sheet
they will in this new worksheet as well...

For clarity, I am trying to merge a mean and sd from two separate columns...
Using Excel 07 - Any suggestions would be super!



  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default insert a symbol into a function cell

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

On Wed, 7 Mar 2007 16:37:40 -0800, Krista F
wrote:

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...




"Gord Dibben" wrote:

Krista

Add it to the formula.

=text(sheet2!a1,"general")&CHAR(177)&text(sheet2!a 2,"general")


Gord Dibben MS Excel MVP

On Wed, 7 Mar 2007 15:41:13 -0800, Krista F
wrote:

Thanks Martin,

That works with "+" but I am actually trying to insert the symbol "±".
Seems once you invoke the function (=) feature the use of symbols or special
characters is prohibited?


"Martin Fishlock" wrote:

Try using this =text(sheet2!a1,"general")&"+"&text(sheet2!a2,"gen eral")
--
Hope this helps
Martin Fishlock, Bangkok, Thailand
Please do not forget to rate this reply.


"Krista F" wrote:

I am trying to merge two cells together from a different worksheet with the
values separated by the plus/minus symbol into one cell. I would also like
to retain the auto-update portion of if those values change in that sheet
they will in this new worksheet as well...

For clarity, I am trying to merge a mean and sd from two separate columns...
Using Excel 07 - Any suggestions would be super!




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
CAN'T INSERT SYMBOL? Malcolm Austin Excel Worksheet Functions 4 October 21st 06 12:23 AM
How do I insert symbol conditional on cell values Ivan Taklew Excel Discussion (Misc queries) 2 April 27th 06 03:52 PM
insert a therefore symbol Zandonal New Users to Excel 1 February 17th 06 01:53 AM
insert symbol Santosh Excel Worksheet Functions 5 May 19th 05 05:31 AM
I need a symbol but "symbol" in the Insert menu is grayed-out. Nothappy Excel Discussion (Misc queries) 2 May 3rd 05 12:16 AM


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