2

please check the picture link to understand the query **

I want to combine the multiple raw into one text string , I can use substitute function to change one word in a text string but how can i use the same function to change multiple text in the same raw ? Please check the below picture

Raw 4 is a old text and i want to change three word of that raw and results should be like last raw, I guess picture is pretty clear to understand this.

I would appreciate if anyone can help in this , Please check the below picture

http://3.bp.blogspot.com/-239FYyB8zC8/UY1dJC9eU7I/AAAAAAAAAU0/XlfBWN0k9Ts/s1600/Excel.jpg

http://i.stack.imgur.com/8RmS2.jpg

4

1 回答 1

5

使用substitute里面另一个substitute里面另一个substitute

应该看起来像:

= substitute(substitute(substitute(text; oldtext; newtext); oldtext2; newtext2); oldtext3; newtext3)

在您的具体情况下:

 = substitute(substitute(substitute(D2; "ABC"; A2); "DEF"; B2); "JKL"; C2)
于 2013-05-10T21:08:30.453 回答