Grid Boxes

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

Guest

I'm trying to create graph paper (one inch square boxes) using excel.
However, excel uses pixels to change row and column widths. I've got real
close but when i print the graph sheets and measure with a ruler its not a
one inch square box. Any ideas how to approach this or how to make one inch
square cells? thanks inadvance.
 
With font Arial 10 (default)

with yourRange
.RowHeight=72
.ColumnWidth=13
end with

produces 72x72 points squares.

HTH
 
Back
Top