cell sizes

J

Jon Peltier

Bob -

You can't change the default measurement system for column width, but
you can use a simple macro to convert inches to characters, and adjust
cell sizes this way. This macro changes the worksheet to an array of
2-inch square cells.

Sub TwoInchSquareCells()
Dim i As Integer
For i = 1 To 4
With ActiveSheet
.Cells.RowHeight = 144
.Cells.ColumnWidth = _
.Cells(1, 1).ColumnWidth * 144 / .Cells(1, 1).Width
End With
Next
End Sub

- Jon
 

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

Top