Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc,microsoft.public.excel.programming,microsoft.public.excel.worksheet.functions,microsoft.public.office.misc
|
|||
|
|||
![]()
hello everyone
I want to know height of row in cm as function CELL return width column bing |
#2
![]()
Posted to microsoft.public.excel.misc,microsoft.public.excel.programming,microsoft.public.excel.worksheet.functions,microsoft.public.office.misc
|
|||
|
|||
![]()
On Wed, 21 Dec 2011 08:53:28 +0100, "bing" wrote:
hello everyone I want to know height of row in cm as function CELL return width column Be aware that the column width argument from the CELL function is in number of characters, not in CM. To get row height in CM, you may use a User Defined Function. To enter this User Defined Function (UDF), <alt-F11 opens the Visual Basic Editor. Ensure your project is highlighted in the Project Explorer window. Then, from the top menu, select Insert/Module and paste the code below into the window that opens. To use this User Defined Function (UDF), enter a formula like =RowHeightCM([cell_ref]) in some cell. If the optional cell reference argument is missing, the function will return the row height of the cell in which it was entered (like the CELL function). Note that the rowheight property is in points, and there are 72 points to an inch. =================================== Option Explicit Function RowHeightCM(Optional rg As Range) As Double If rg Is Nothing Then Set rg = Application.Caller RowHeightCM = rg.RowHeight * 2.54 / 72 End Function ============================ |
#3
![]()
Posted to microsoft.public.excel.misc,microsoft.public.excel.programming,microsoft.public.excel.worksheet.functions,microsoft.public.office.misc
|
|||
|
|||
![]() "Ron Rosenfeld" wrote in message... thanks Ron |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Set a minimum row height a the same time with autofit row height | New Users to Excel | |||
Row Height stopped growing and Auot-Fit Row Height does not work | Excel Discussion (Misc queries) | |||
the row height should be excatly the height of the data | Excel Discussion (Misc queries) | |||
Resizing row height to dynamically fit height of text box | Excel Discussion (Misc queries) | |||
resize row height and column height | Setting up and Configuration of Excel |