简体   繁体   中英

How to combine data from multiple cells into one cell in Excel 2010?

When converting data from a text file into excel, I was able to separate the data into columns using the Delimited tab function. However, some data was split into two columns. As a result, I now have data in multiple cells for each row. I am able use a simple formula to concatenate such as:
=A1&B1

However, there is no space between the data after it is combined. How do I revise the formula to create a space between the data?

Thanks.

请尝试使用以下代码:= CONCATENATE(A1&“”&B1)“”在两个文本之间添加一个空格,您将能够在连接的字符串之间找到空格。

Try using =A1&" "&B1

You can use constants in such formulae

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM