Ask Your Question
4

How can you combine columns containing integers into a single column and include characters between them?

asked 2023-06-15 19:16:05 +0000

david gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2023-06-15 19:28:01 +0000

ladyg gravatar image

You can use the CONCATENATE function or the ampersand (&) symbol in Excel to combine columns containing integers into a single column with characters between them. For example, if you have two columns A and B with integers and you want to combine them with a hyphen between them in a new column C, you can use the following formula in cell C1:

=CONCATENATE(A1,"-",B1)

or

=A1&"-"&B1

This will result in a new column C with values like "1-2", "3-4", etc.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-06-15 19:16:05 +0000

Seen: 8 times

Last updated: Jun 15 '23