text centering

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to centre the contents in a range by using VBA. Could someone
please help.

Thanks
 
Alan,

You can do by this code:
Sub Centering()
With Range("a1")
.HorizontalAlignment = xlCenter
.VerticalAlignment = xlCenter
end With
End sub

Type your text in A1 then run that code
 

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