Here's a procedure that will do what you want I think...
Code:
Sub RowHeightInches()
'
' Macro1 Macro
' Macro recorded 3/17/2003 by Skip Metzger
'
'
nbr = InputBox("Row of how many inches?")
If Not IsNumeric(nbr) Then Exit Sub
Selection.RowHeight = 72 * nbr
End Sub
Sub RowHeightInches()
'
' Macro1 Macro
' Macro recorded 3/17/2003 by Skip Metzger
'
'
nbr = InputBox("Row of how many inches?")
If Not IsNumeric(nbr) Then Exit Sub
Selection.EntireRow.RowHeight = 72 * nbr
End Sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.