Hi
If anyome can help with the following it wwould be appreciated
The following works OK using Windows 2003 however when it is run using Windows ME (or 98) a Run Time Error 438 occurs
The problem occurs in the line:
Set tbl = Worksheets("Pool").Range("a3").CurrentRegion
tbl.Offset(2, 0).Resize(tbl.Rows.Count - 2, tbl.Columns.Count).Select
Any thoughts on how to fix this sos that it can be run using Windows ME would be welcome
Yhe code is:
Private Sub CommandButton1_Click()
'Calculate Winner and rehandicap
Dim NumberPlayers As Integer
Dim counter As Integer
Dim hcap As Single
Dim score As Integer
'select all p[layer rows excluding header row
Set tbl = Worksheets("Pool").Range("a3").CurrentRegion
tbl.Offset(2, 0).Resize(tbl.Rows.Count - 2, tbl.Columns.Count).Select
'sort selected area
Selection.Sort Key1:=Range("D3"), Order1:=xlDescending, Header:=xlNo, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _
DataOption1:=xlSortNormal
Worksheets("Pool").Cells(3, 3).Select
NumberPlayers = Application.WorksheetFunction.CountA(Worksheets("Pool").Range("A3:A10000")
If anyome can help with the following it wwould be appreciated
The following works OK using Windows 2003 however when it is run using Windows ME (or 98) a Run Time Error 438 occurs
The problem occurs in the line:
Set tbl = Worksheets("Pool").Range("a3").CurrentRegion
tbl.Offset(2, 0).Resize(tbl.Rows.Count - 2, tbl.Columns.Count).Select
Any thoughts on how to fix this sos that it can be run using Windows ME would be welcome
Yhe code is:
Private Sub CommandButton1_Click()
'Calculate Winner and rehandicap
Dim NumberPlayers As Integer
Dim counter As Integer
Dim hcap As Single
Dim score As Integer
'select all p[layer rows excluding header row
Set tbl = Worksheets("Pool").Range("a3").CurrentRegion
tbl.Offset(2, 0).Resize(tbl.Rows.Count - 2, tbl.Columns.Count).Select
'sort selected area
Selection.Sort Key1:=Range("D3"), Order1:=xlDescending, Header:=xlNo, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _
DataOption1:=xlSortNormal
Worksheets("Pool").Cells(3, 3).Select
NumberPlayers = Application.WorksheetFunction.CountA(Worksheets("Pool").Range("A3:A10000")