VBA Bug

mikec1982

New Member
Joined
Aug 29, 2022
Messages
6
Office Version
  1. 365
Platform
  1. Windows
I have a line of VBA code that runs correctly but is cutting off some of the results. It is for a group of students. The results compile for last names A-S, but I believe because one of my ranges is set incorrectly, I am not getting the T-Z students.

Most of the ranges are set to A2:E200, but when I attempt to increase that range to A2:E300, I get an error on this line:

Selection.AutoFill Destination:=Range("A2:E200"), Type:=xlFillDefault

Any idea how I can make the range larger so that it includes all results?

VBA Code:
Sheets("Student").Select
    Range("A1:C130").Select
    Selection.Copy
    Selection.PasteSpecial Paste:=xlPasteAllUsingSourceTheme, Operation:=xlNone _
        , SkipBlanks:=False, Transpose:=False
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
    Range("A1").Select
    Application.CutCopyMode = False
    ActiveCell.FormulaR1C1 = "Student First"
    Sheets("Parent").Select
    Range("A2").Select
    ActiveCell.FormulaR1C1 = _
        "=IF(SUM(COUNTIF(PrepNameTag!RC[2],""*""&{""mother"",""stepmother"",""stepfather"",""father""}&""*"")),LEFT(TRIM(PrepNameTag!RC[2]),SEARCH("" "",TRIM(PrepNameTag!RC[2]))-1),IF(COUNTIF(PrepNameTag!RC[2],""*Other*""),""""))"
    Range("B2").Select
    ActiveCell.FormulaR1C1 = _
        "=IF(SUM(COUNTIF(PrepNameTag!RC[1],""*""&{""mother"",""stepmother"",""father"",""stepfather""}&""*"")),MID(TRIM(PrepNameTag!RC[1]),SEARCH("" "",TRIM(PrepNameTag!RC[1]))+1,SEARCH(""("",PrepNameTag!RC[1])-1-SEARCH("" "",TRIM(PrepNameTag!RC[1]))),"""")"
    Range("C2").Select
    ActiveCell.FormulaR1C1 = _
        "=IF(SUM(COUNTIF(PrepNameTag!RC,""*""&{""mother"",""father"",""stepmother"",""stepfather""}&""*"")),PrepNameTag!RC[-2],"""")"
    Range("D2").Select
    ActiveCell.FormulaR1C1 = _
        "=IF(SUM(COUNTIF(PrepNameTag!RC[-1],""*""&{""mother"",""father"",""stepmother"",""stepfather""}&""*"")),PrepNameTag!RC[-2],"""")"
    Range("E2").Select
    ActiveCell.FormulaR1C1 = _
        "=IF(SUM(COUNTIF(PrepNameTag!RC[-2],""*""&{""mother"",""father"",""stepmother"",""stepfather""}&""*"")),PrepNameTag!RC[-1],"""")"
    Range("A2:E2").Select
    Selection.AutoFill Destination:=Range("A2:E200"), Type:=xlFillDefault
    Range("A2:E100").Select
    ActiveWindow.SmallScroll Down:=-24
    Selection.AutoFill Destination:=Range("A2:E200"), Type:=xlFillDefault
    Range("A2:E200").Select
    ActiveWindow.SmallScroll Down:=-306
    Selection.Copy
    Selection.PasteSpecial Paste:=xlPasteAllUsingSourceTheme, Operation:=xlNone _
        , SkipBlanks:=False, Transpose:=False
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
    Application.CutCopyMode = False
    ActiveWorkbook.Worksheets("Parent").Sort.SortFields.Clear
    ActiveWorkbook.Worksheets("Parent").Sort.SortFields.Add Key:=Range("B2:B200") _
        , SortOn:=xlSortOnValues, Order:=xlDescending, DataOption:=xlSortNormal
    ActiveWorkbook.Worksheets("Parent").Sort.SortFields.Add Key:=Range("A2:A200") _
        , SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:=xlSortNormal
    With ActiveWorkbook.Worksheets("Parent").Sort
        .SetRange Range("A2:E200")
        .Header = xlGuess
        .MatchCase = False
        .Orientation = xlTopToBottom
        .SortMethod = xlPinYin
        .Apply
    End With
    Range("A1").Select
    Sheets("Other").Select
    ActiveCell.FormulaR1C1 = _
        "=IF(SUM(COUNTIF(PrepNameTag!RC[2],""*""&{""grandmother"",""grandfather"",""brother"",""sister"",""aunt"",""uncle"",""friend""}&""*"")),LEFT(TRIM(PrepNameTag!RC[2]),SEARCH("" "",TRIM(PrepNameTag!RC[2]))-1),IF(COUNTIF(PrepNameTag!RC[2],""""),""""))"
    Range("B2").Select
    ActiveCell.FormulaR1C1 = _
        "=IF(SUM(COUNTIF(PrepNameTag!RC[1],""*""&{""grandmother"",""brother"",""grandfather"",""sister"",""aunt"",""uncle"",""friend""}&""*"")),MID(TRIM(PrepNameTag!RC[1]),SEARCH("" "",TRIM(PrepNameTag!RC[1]))+1,SEARCH(""("",PrepNameTag!RC[1])-1-SEARCH("" "",TRIM(PrepNameTag!RC[1]))),"""")"
    Range("A2:B2").Select
    Selection.AutoFill Destination:=Range("A2:B200"), Type:=xlFillDefault
    Range("A2:B200").Select
    ActiveWindow.SmallScroll Down:=-198
    Selection.Copy
    Selection.PasteSpecial Paste:=xlPasteAllUsingSourceTheme, Operation:=xlNone _
        , SkipBlanks:=False, Transpose:=False
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
    Application.CutCopyMode = False
    ActiveWorkbook.Worksheets("Other").Sort.SortFields.Clear
    ActiveWorkbook.Worksheets("Other").Sort.SortFields.Add Key:=Range("B2:B200") _
        , SortOn:=xlSortOnValues, Order:=xlDescending, DataOption:=xlSortNormal
    ActiveWorkbook.Worksheets("Other").Sort.SortFields.Add Key:=Range("A2:A200") _
        , SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:=xlSortNormal
    With ActiveWorkbook.Worksheets("Other").Sort
        .SetRange Range("A2:B200")
        .Header = xlGuess
        .MatchCase = False
        .Orientation = xlTopToBottom
        .SortMethod = xlPinYin
        .Apply
    End With
    Range("A1").Select
End Sub
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
maybe? Range("A2:E" & Rows.count).End(xlUp).Row

Not sure if that will work for a multi column range, but it does for one column only.
 
Upvote 0

Forum statistics

Threads
1,214,919
Messages
6,122,260
Members
449,075
Latest member
staticfluids

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top