Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Concatenate cells into Text Box, Excel

Status
Not open for further replies.

ran13

Aerospace
Dec 14, 2001
11
0
0
US
How do I concatenate cells into a text box in Excel without first putting the concatenation into another cell?

I'd also like to extract text from a text box into separate cells.
 
Replies continue below

Recommended for you

Ran

May be my uderstanding of your question is not correct, but if it is try this:

Let say:
in A1 you typed b=
in B1 you have 171.234
In C1 you have 200.2356

the string =A1&Fixed(B1,1,1)&"+"&FIXED(C1,3,1)&"
will give in your cell the result:
b=171.2+200.236 as a text

Hope it helps

Zmei
 
You're right; your example will give you that result in a cell. However, I want the result to be in a text box, not another cell.
 
ran13,
To automate textbox you have to use VBA, there's no a way around it. The following function will update the textbox every time you change the cell values in the worksheet. Place it in the worksheet vba module:

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    Dim rng As Range
    Set rng = ActiveCell
    ActiveSheet.Shapes("Text Box 1").Select
    Selection.Characters.Text = Range("B6") & Range("C6")
    rng.Select
End Sub

Hope it helps!
 

first do what zmei suggested:
in A1 you typed b=
in B1 you have 171.234
In C1 you have 200.2356
the string =A1&Fixed(B1,1,1)&"+"&FIXED(C1,3,1)&"
will give in your cell the result:
b=171.2+200.236 as a text



then try this:

create the textbox
select the textbox by clicking on it once
in the equation bar, type your equation (such as =A1&Fixed(B1,1,1)&"+"&FIXED(C1,3,1)&"

lemme know if that works. It works for me in xl2k.
 
ran13,
ivymike response will work, with another technique.
1) concatenate all the input data into another cell
2) create textbox
3) with textbox selected (not interior of textbox, but textbox border), press the "=" and then the cell with all the concatenated cells.
pmover
 
Status
Not open for further replies.
Back
Top