View Single Post
  #8   Report Post  
Posted to microsoft.public.excel.programming
jfrick[_2_] jfrick[_2_] is offline
external usenet poster
 
Posts: 4
Default Need help with MAcro for Multi-value cell and row processing

Thank you very much.

It works very well.

I did have to make one minor change.

It was to the line that reads

strBase = VBA.Left$(rngCell.Value, lngLast) & " "

I changed it by adding a coma inside the quotes.

Now it reads
strBase = VBA.Left$(rngCell.Value, lngLast) & ","

The reason was that the output no longer had a comma between the
company code and the previous field. And I needed this comma to
separate the field values.

Again it works great. Thnaks fo your help on this.