Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Can someone tell me the VB/Macro code to set the height of a row/rows. -- icetrey ------------------------------------------------------------------------ icetrey's Profile: http://www.excelforum.com/member.php...o&userid=20329 View this thread: http://www.excelforum.com/showthread...hreadid=564216 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi IceTray,
Can someone tell me the VB/Macro code to set the height of a row/rows. Try: Range("A1:A4").RowHeight = 20 --- Regards, Norman |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dim Rng As Range
Dim Ht As Integer Set Rng = Rows(1) Ht = 25 Rng.RowHeight = Ht HTH Duncan icetrey wrote: Can someone tell me the VB/Macro code to set the height of a row/rows. -- icetrey ------------------------------------------------------------------------ icetrey's Profile: http://www.excelforum.com/member.php...o&userid=20329 View this thread: http://www.excelforum.com/showthread...hreadid=564216 |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() It worked for me. Thanks -- icetre ----------------------------------------------------------------------- icetrey's Profile: http://www.excelforum.com/member.php...fo&userid=2032 View this thread: http://www.excelforum.com/showthread.php?threadid=56421 |
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) | |||
Code to change column height of arrays? | Excel Discussion (Misc queries) | |||
Resizing row height to dynamically fit height of text box | Excel Discussion (Misc queries) | |||
Need code to Autofit Row Height on recalculation | Excel Discussion (Misc queries) |