Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 16
Default set rowheight property

I need the syntax to set the active rowheight to 3
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,565
Default set rowheight property

With Worksheets("Sheet1").Rows(1)
.RowHeight = .3
End With



"Ron5440" wrote in message
...
I need the syntax to set the active rowheight to 3



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,934
Default set rowheight property

If you mean you want to set the RowHeight for the row that the ActiveCell is
in...

ActiveCell.EntireRow.RowHeight = 3

--
Rick (MVP - Excel)


"Ron5440" wrote in message
...
I need the syntax to set the active rowheight to 3


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,565
Default set rowheight property

Rows(Selection.Row).RowHeight = 3

Or.

Rows(ActiveCell.Row).RowHeight = 3

The row object has to be specified for the RowHeight property to work.


"Ron5440" wrote in message
...
I need the syntax to set the active rowheight to 3



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,355
Default set rowheight property

ActiveCell.entirerow.height = 3

--
HTH,

Barb Reinhardt



"Ron5440" wrote:

I need the syntax to set the active rowheight to 3



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 16
Default set rowheight property

Perfect,
ThankYou

RR


"Barb Reinhardt" wrote:

ActiveCell.entirerow.height = 3

--
HTH,

Barb Reinhardt



"Ron5440" wrote:

I need the syntax to set the active rowheight to 3

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Is RowHeight=0 the same as Hidden Michelle Excel Discussion (Misc queries) 4 February 22nd 10 02:02 PM
Format RowHeight question ChipButtyMan Excel Programming 3 September 11th 08 11:17 PM
How to break the rowheight limit clara Excel Programming 2 August 13th 07 08:12 PM
How can I find the rowheight and use it in a formula? [email protected] Excel Programming 2 August 11th 07 12:47 AM
Slow RowHeight behavior [email protected] Excel Programming 2 August 22nd 06 05:28 PM


All times are GMT +1. The time now is 07:55 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"