View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
ShaneDevenshire ShaneDevenshire is offline
external usenet poster
 
Posts: 2,344
Default HOW TO INSERT A * BEFORE AND AFTER EACH WORD

Hi,

If each word is in its own cell you could use

="*"&A1&"*"

Or if you want to loose the spaces between word in a multi-word cell

="*"&SUBSTITUTE(A9," ","*")&"*"


--
Thanks,
Shane Devenshire


"Brianna" wrote:

I need to add a * before and after each word. Can anyone help me in doing
this?

Thank you!