adding text for a specific range

  • Thread starter Thread starter pauluk
  • Start date Start date
P

pauluk

I have a work book i copy the info from another now to identifie tha
that range i have just copied i place a letter in colum c ea

The copying macro is fine, all i wish to know what do i add t
automactally place the letters ea into colume c for the range i hav
just copied
 
Put this in after you past

Set myrange = Application.Selectio
For Each c In myrang
c.Value = CStr(c.Value) & " ea
Nex
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top