In case anybody is interested. I have found a way to work with dynamic variables based on content on a worksheet.
Sub SORT_BY_QTY_ADJ()
'
' Macro Created 5/4/2007 by Jeremy Albright
'
'
Dim strColumnRange As String
Dim numCurrentCell As Single
Dim rngCurrentCell As Range
Dim rngNextCell As Range
Dim rngAllRows As Range
Dim strAllRows As String
Dim strStartCell As String
strColumnRange = "G3"
ActiveSheet.Unprotect
Set rngCurrentCell = Worksheets("Master").Range(strColumnRange)
Do While Not IsEmpty(rngCurrentCell)
Set rngNextCell = rngCurrentCell.Offset(1, 0)
If rngCurrentCell.Value = "0" Then
rngCurrentCell.EntireRow.Delete Shift:=xlUp
End If
Set rngCurrentCell = rngNextCell
Loop
Columns("G:G").Select
Range("G2").Activate
strColumnRange = "S3"
numCurrentCell = "3"
strStartCell = "A3"
Set rngCurrentCell = Worksheets("Master").Range(strColumnRange)
Do While Not IsEmpty(rngCurrentCell)
Set rngCurrentCell = rngCurrentCell.Offset(1, 0)
numCurrentCell = numCurrentCell + 1
Loop
strAllRows = strStartCell & ":S" & numCurrentCell
Set rngAllRows = Worksheets("Master").Range(strAllRows)
rngAllRows.Sort Key1:=Range("G3"), Order1:=xlAscending, Header:= _
xlGuess, OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _
DataOption1:=xlSortNormal
ActiveSheet.PageSetup.PrintArea = "$A:$G"
ActiveSheet.Protect DrawingObjects:=True, Contents:=True, Scenarios:=True
End Sub
EDIT: Code wrapped by Simon Lloyd - only due to newbie status
Bookmarks