M
marvontherim
I have a range of dated in a column and want to arrange them i
assending order. My problem is if that this range of data is linked t
another data input sheet whidh places a 0 in place of no data entry
When I use my sort macro it puts all 0 enteries on top.
I need the macro to be modified to sort all numbers greater that "0"
Can anyone help or offer a suggestion, below is the macro.
Sub Macro10()
'
' Macro10 Macro
' Macro recorded 6/19/2004 by USER
'
'
ActiveSheet.Unprotect
Range("A8:F870").Select
Selection.Sort Key1:=Range("A8"), Order1:=xlAscending
Header:=xlGuess, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom
_
DataOption1:=xlSortNormal
ActiveSheet.Protect DrawingObjects:=True, Contents:=True
Scenarios:=True _
, AllowFiltering:=True
End Su
assending order. My problem is if that this range of data is linked t
another data input sheet whidh places a 0 in place of no data entry
When I use my sort macro it puts all 0 enteries on top.
I need the macro to be modified to sort all numbers greater that "0"
Can anyone help or offer a suggestion, below is the macro.
Sub Macro10()
'
' Macro10 Macro
' Macro recorded 6/19/2004 by USER
'
'
ActiveSheet.Unprotect
Range("A8:F870").Select
Selection.Sort Key1:=Range("A8"), Order1:=xlAscending
Header:=xlGuess, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom
_
DataOption1:=xlSortNormal
ActiveSheet.Protect DrawingObjects:=True, Contents:=True
Scenarios:=True _
, AllowFiltering:=True
End Su