Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
Is it possible to display the contents of multiple separate cells in another
single cell? If the results of several cells say B1, B2, and B3 are the amounts $10, $15 and $20, I would like to display them in cell A1 as follows: $10 $15 $20 I could do this statically by using text and the 'Alt|Enter' function within the cell. However, these amounts will change from time to time so I'd like a link. Is this possible or not? Thanks for any help. Brett |
#2
![]() |
|||
|
|||
![]()
Brett
One way: In A1: ="$"&B1&CHAR(10)&"$"&B2&CHAR(10)&"$"&B3&CHAR(10 ) Format A1 as "Wrap text" (or similar) -- Best Regards Leo Heuser Followup to newsgroup only please. "FuadsCurse" skrev i en meddelelse ... Is it possible to display the contents of multiple separate cells in another single cell? If the results of several cells say B1, B2, and B3 are the amounts $10, $15 and $20, I would like to display them in cell A1 as follows: $10 $15 $20 I could do this statically by using text and the 'Alt|Enter' function within the cell. However, these amounts will change from time to time so I'd like a link. Is this possible or not? Thanks for any help. Brett |
#3
![]() |
|||
|
|||
![]()
Go to formatcellsalignment and turn on text wrap, then use
=TEXT(B1,"$0.00")&CHAR(10)&TEXT(B2,"$0.00")&CHAR(1 0)&TEXT(B3,"$0.00") Makes sure the cell is large enough You can also use =B1&CHAR(10)&B2 etc but then you won't get any currency format, just the numbers Regards, Peo Sjoblom "FuadsCurse" wrote: Is it possible to display the contents of multiple separate cells in another single cell? If the results of several cells say B1, B2, and B3 are the amounts $10, $15 and $20, I would like to display them in cell A1 as follows: $10 $15 $20 I could do this statically by using text and the 'Alt|Enter' function within the cell. However, these amounts will change from time to time so I'd like a link. Is this possible or not? Thanks for any help. Brett |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Multiple lines in 1 cell | Excel Discussion (Misc queries) | |||
Entering array in single cell | Excel Discussion (Misc queries) | |||
Return Multiple Results with Lookup | Excel Worksheet Functions | |||
I want the results of a formula to show in cell, NOT THE FORMULA! | Excel Discussion (Misc queries) | |||
How do I link an identical cell address across multiple worksheet. | Excel Worksheet Functions |