我有一个名为不同产品的专栏,例如:
A
1 red car
2 blue whale
3 red carpet in the closet
4 star wars dvd extra especial thing
5 whatever with your however
我想在B栏:
B
1 +red +car
2 +blue +whale
3 +red +carpet +in +the +closet
4 +star +wars +dvd +extra +especial +thing
5 +whatever +with +your +however
我正在使用Google Spreadsheets,但Excel的解决方案可以正常使用!
如果实现这一目标的唯一方法是使用自定义公式,我更喜欢Google Spreadsheets公式。虽然,如果可能的话,我真的想知道原生配方。
答案 0 :(得分:6)
你走了。把它放在单元格B1中:
="+"&SUBSTITUTE(A1," "," +")
现在向下复制。
答案 1 :(得分:3)
为了避免必须填写并且必须在输入新数据时重复此操作,请在Google表格上尝试
=ArrayFormula("+"®EXREPLACE(FILTER(E:E,LEN(E:E))," "," \+") )