VBA - combining strings of characters

K

kim.miller2

I have a 2 strings of characters in 2 spreadsheet cells and I want to
cobine them into 1 cell.

cell 1 = "Geometry"
cell 2 = "Algebra"

I want cell 3 = "Geometry / Algebra"

Can anyone help?
 
D

dd

I think you should have posted this in an excel newsgroup.

Anyhoo, try the concatenate function which joins several text strings into
one text string.
Syntax

CONCATENATE (text1,text2,...)

Text1, text2, ... are 1 to 30 text items to be joined into a single text
item. The text items can be text strings, numbers, or single-cell
references.

Remarks

The "&" operator can be used instead of CONCATENATE to join text items.

eg. =A1&" / "&A2


I have a 2 strings of characters in 2 spreadsheet cells and I want to
cobine them into 1 cell.

cell 1 = "Geometry"
cell 2 = "Algebra"

I want cell 3 = "Geometry / Algebra"

Can anyone help?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top