R
robbie de sutter
Hello,
How can I determine the column width in pixels in VBA (excel 2002 sp2)?
In a new workbook I try to determine the width of column A.
Clicking between 2 columns displays the following information (provided
by excel - the pixel value is in this case correct):
"Width: 8.43 (64 pixels)"
So I need the value 64 in my VBA code, but HOW?
Allready tried to following:
range("A1").width
Also I have exactly the same problem when trying to determine the row
height...
Can anybody help me?
thanks in advance,
Robbie De Sutter
How can I determine the column width in pixels in VBA (excel 2002 sp2)?
In a new workbook I try to determine the width of column A.
Clicking between 2 columns displays the following information (provided
by excel - the pixel value is in this case correct):
"Width: 8.43 (64 pixels)"
So I need the value 64 in my VBA code, but HOW?
Allready tried to following:
range("A1").width
returns 48 (?!?!?!) range("A1").Columnwidth
returns 8.43 ActiveWindow.PointsToScreenPixelsX(range("A1").width)
returns 146 ActiveWindow.PointsToScreenPixelsX(range("A1").width)
returns 106
Also I have exactly the same problem when trying to determine the row
height...
Can anybody help me?
thanks in advance,
Robbie De Sutter