logo elektroda
logo elektroda
X
logo elektroda

[Excel] - How to Append Text to Each Cell and Split Sentences into Comma-Separated Words

zyga435 42612 3
ADVERTISEMENT
Treść została przetłumaczona polish » english Zobacz oryginalną wersję tematu
  • #1 9705948
    zyga435
    Level 10  
    I warmly welcome.

    I would like to know how to add additional text to the data in Excel in each cell in a given column to the existing one. And how to automatically break sentences into words separated by commas.

    I mean something like that, initially I have the first column. How do I get the rest? I know it is executable but I don't know how to do it.

    [Excel] - How to Append Text to Each Cell and Split Sentences into Comma-Separated Words
  • ADVERTISEMENT
  • #2 9706081
    PeteSh
    Level 30  
    Connecting texts:
    = CONCATENATE ("Cheapest:", A1, B1)
    Searching for spaces in the text:
    = SEARCH ("", A1,1)
  • ADVERTISEMENT
  • #3 9709124
    marek003
    Level 40  
    As for commas, he suggests
    = SUBSTITUTE (A1, ""; ",")
  • #4 9724830
    zyga435
    Level 10  
    everything ok
ADVERTISEMENT