Multiple entries put into string

  • Thread starter Thread starter gims289
  • Start date Start date
G

gims289

I have a userform textbox that accepts multiple entries (Multiline = True).
The values of that textbox are then saved into a single cell to be called
later.

When calling that info and incorporating it into a string, how do I put a
comma between the entries that were originally entered?
 
I have a userform textbox that accepts multiple entries (Multiline = True).
The values of that textbox are then saved into a single cell to be called
later.

When calling that info and incorporating it into a string, how do I put a
comma between the entries that were originally entered?

Perhaps, in your code, REPLACE vbLF with ", "

--ron
 
Back
Top