Thread: commas in cells
View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.misc
Don Guillett Don Guillett is offline
external usenet poster
 
Posts: 10,124
Default commas in cells

I wonder why?

sub addcommaatend()
for each c in range("a2:a22")
c.value=c & ","
next c
end sub

--
Don Guillett
SalesAid Software

"Dee" wrote in message
...
aa,
and
aaaa aaaa,

"Don Guillett" wrote:

what do you want
aaaaaaa aaaaaa,
or
aaaaaaa,aaaaaa,
or
aa,

--
Don Guillett
SalesAid Software

"Dee" wrote in message
...
How do I put a comma at the end of text in all the cells in a column?