Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 194
Default "Each Row from there to here"?

I'm trying to set my row height if it's less than a certain height. The
code worked fine on the whole sheet, but errors out when I try to constrain
it to my used range. At the "For Each rw" line, I get a syntax error:
compile error. When it was "In Worksheets("Sheet1").Rows", it worked fine,
but did all my blank rows and my header, too!

Suggestions are appreciated.
Ed

Sub TestRowHeight()

Dim FirstRow As Long
Dim LastRow As Long

FirstRow = 2
LastRow = Range("B65536").End(xlUp).Row

For Each rw = LastRow To FirstRow Step -1
If rw.RowHeight < 25.5 Then
rw.RowHeight = 25.5
End If
Next rw

End Sub


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 194
Default "Each Row from there to here"?

Paul, it works great in xl2000, too! (Needed an End If before Next rw.)

If I understand, I was trying to use rw as the object, instead as a property
of the Rows object? (Either way, I see I forgot to Dim it.)

Thanks much.
Ed

wrote in message
...

Sub TestRowHeight()

Dim rw As Long
Dim FirstRow As Long
Dim LastRow As Long

FirstRow = 2
LastRow = Range("B65536").End(xlUp).Row

For rw = LastRow To FirstRow Step -1
If Rows(rw).RowHeight < 25.5 Then Rows(rw).RowHeight = 25.5
Next rw

End Sub

Tested using Excel 97SR2 on Windows 98SE,

HTH
Paul
--------------------------------------------------------------------------

------------------------------------
Be advised to back up your WorkBook before attempting to make changes.
--------------------------------------------------------------------------

------------------------------------

I'm trying to set my row height if it's less than a certain height. The
code worked fine on the whole sheet, but errors out when I try to

constrain
it to my used range. At the "For Each rw" line, I get a syntax error:
compile error. When it was "In Worksheets("Sheet1").Rows", it worked

fine,
but did all my blank rows and my header, too!

Suggestions are appreciated.
Ed

Sub TestRowHeight()

Dim FirstRow As Long
Dim LastRow As Long

FirstRow = 2
LastRow = Range("B65536").End(xlUp).Row

For Each rw = LastRow To FirstRow Step -1
If rw.RowHeight < 25.5 Then
rw.RowHeight = 25.5
End If
Next rw

End Sub




  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 172
Default "Each Row from there to here"?


Sub TestRowHeight()

Dim rw As Long
Dim FirstRow As Long
Dim LastRow As Long

FirstRow = 2
LastRow = Range("B65536").End(xlUp).Row

For rw = LastRow To FirstRow Step -1
If Rows(rw).RowHeight < 25.5 Then Rows(rw).RowHeight = 25.5
Next rw

End Sub

Tested using Excel 97SR2 on Windows 98SE,

HTH
Paul
--------------------------------------------------------------------------------------------------------------
Be advised to back up your WorkBook before attempting to make changes.
--------------------------------------------------------------------------------------------------------------

I'm trying to set my row height if it's less than a certain height. The
code worked fine on the whole sheet, but errors out when I try to constrain
it to my used range. At the "For Each rw" line, I get a syntax error:
compile error. When it was "In Worksheets("Sheet1").Rows", it worked fine,
but did all my blank rows and my header, too!

Suggestions are appreciated.
Ed

Sub TestRowHeight()

Dim FirstRow As Long
Dim LastRow As Long

FirstRow = 2
LastRow = Range("B65536").End(xlUp).Row

For Each rw = LastRow To FirstRow Step -1
If rw.RowHeight < 25.5 Then
rw.RowHeight = 25.5
End If
Next rw

End Sub


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 172
Default "Each Row from there to here"?

Ed,

This WebPage does a fairly decent job of explaining For..Next loops
and For Each .. Next loops.

rw is a counter. You are looping backwards through each row and
setting the RowHeight property.

http://msdn.microsoft.com/library/en...structures.asp

HTH
Paul
--------------------------------------------------------------------------------------------------------------
Be advised to back up your WorkBook before attempting to make changes.
--------------------------------------------------------------------------------------------------------------

Paul, it works great in xl2000, too! (Needed an End If before Next rw.)

If I understand, I was trying to use rw as the object, instead as a property
of the Rows object? (Either way, I see I forgot to Dim it.)

Thanks much.
Ed


  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,824
Default "Each Row from there to here"?

And if you really wanted to use a range object:

Option Explicit

Sub TestRowHeight()

Dim FirstRow As Long
Dim LastRow As Long
Dim rw As Range

FirstRow = 2
LastRow = Range("B65536").End(xlUp).Row

For Each rw In Range(FirstRow & ":" & LastRow).Rows
If rw.RowHeight < 25.5 Then
rw.RowHeight = 25.5
End If
Next rw

End Sub



Ed wrote:

Paul, it works great in xl2000, too! (Needed an End If before Next rw.)

If I understand, I was trying to use rw as the object, instead as a property
of the Rows object? (Either way, I see I forgot to Dim it.)

Thanks much.
Ed

wrote in message
...

Sub TestRowHeight()

Dim rw As Long
Dim FirstRow As Long
Dim LastRow As Long

FirstRow = 2
LastRow = Range("B65536").End(xlUp).Row

For rw = LastRow To FirstRow Step -1
If Rows(rw).RowHeight < 25.5 Then Rows(rw).RowHeight = 25.5
Next rw

End Sub

Tested using Excel 97SR2 on Windows 98SE,

HTH
Paul
--------------------------------------------------------------------------

------------------------------------
Be advised to back up your WorkBook before attempting to make changes.
--------------------------------------------------------------------------

------------------------------------

I'm trying to set my row height if it's less than a certain height. The
code worked fine on the whole sheet, but errors out when I try to

constrain
it to my used range. At the "For Each rw" line, I get a syntax error:
compile error. When it was "In Worksheets("Sheet1").Rows", it worked

fine,
but did all my blank rows and my header, too!

Suggestions are appreciated.
Ed

Sub TestRowHeight()

Dim FirstRow As Long
Dim LastRow As Long

FirstRow = 2
LastRow = Range("B65536").End(xlUp).Row

For Each rw = LastRow To FirstRow Step -1
If rw.RowHeight < 25.5 Then
rw.RowHeight = 25.5
End If
Next rw

End Sub



--

Dave Peterson

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
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell Steve Kay Excel Discussion (Misc queries) 2 August 8th 08 01:54 AM
change "true" and "false" to "availble" and "out of stock" inthestands Excel Worksheet Functions 2 July 19th 07 07:05 PM
HELP on "left","right","find","len","substitute" functions serene83 Excel Discussion (Misc queries) 5 June 27th 06 02:23 AM
Count occurences of "1"/"0" (or"TRUE"/"FALSE") in a row w. conditions in the next BCB New Users to Excel 7 May 13th 06 10:02 PM
Insert "-" in text "1234567890" to have a output like this"123-456-7890" Alwyn Excel Discussion (Misc queries) 3 October 25th 05 11:36 PM


All times are GMT +1. The time now is 01:37 AM.

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"