vote up 0 vote down star

Basically I want to know how to set center alignment for a cell using VBScript...

I've been googling it and can't seem to find anything that helps.

flag
VBScript as in VBA or an external vbs file run from cscript? – David Sokol Sep 26 '08 at 21:38
Sorry. External vbs file. – Geddy Sep 26 '08 at 21:39

2 Answers

vote up 1 vote down check
Set excel = CreateObject("Excel.Application")

excel.Workbooks.Add() ' create blank workbook

Set workbook = excel.Workbooks(1)

' set A1 to be centered.
workbook.Sheets(1).Cells(1,1).HorizontalAlignment = -4108 ' xlCenter constant.

workbook.SaveAs("C:\NewFile.xls")

excel.Quit()

set excel = nothing

'If the script errors, it'll give you an orphaned excel process, so be warned.

Save that as a .vbs and run it using the command prompt or double clicking.

link|flag
Stackoverflow has horrible formatting for vbs :( – David Sokol Sep 26 '08 at 21:49
Cool, that's exactly what I was looking for. Thanks a lot. – Geddy Sep 26 '08 at 21:56
vote up 1 vote down

There are many ways to select a cell or a range of cells, but the following will work for a single cell.

'Select a Cell Range
Range("D4").Select

'Set the horizontal and vertical alignment
With Selection
    .HorizontalAlignment = xlCenter
    .VerticalAlignment = xlBottom
End With

The HorizontalAlignment options are xlLeft, xlRight, and xlCenter

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.