dataoption=

  1. D

    Variable in Ranges

    Among many inexplicable problems is this. I recorded a macro to sort a spreadsheet using Column A as the first key. The pertinent code that Excel generated is ActiveWorkbook.Worksheets("CurrentWines").Sort.SortFields.Add Key:=Range( _ "A2:A237"), SortOn:=xlSortOnValues...
  2. E

    Change range in a sort macro

    Hi all, I am working on this sheet and I need a lot of data to be sorted in a specific manner. The only issue is that the data I use changes. One week I may have 5000 rows of data in Excel, and others I may have 6000. Is there a way to make the sorta range in this code here change based on how...
  3. T

    Add Sort Function To A Varying Length Spreadsheet

    Hi all, I am trying to add a sort function to a spreadsheet that varies in length, however the code stops when it gets to the .Apply section, does anyone know how to fix this? See the code below: LastRow = sht.Range("A1").CurrentRegion.Rows.Countsht.Range("A2", sht.Range("k" & LastRow)).Select...
  4. P

    Sorting multiple sheets with variable rows

    Hi All, The following code has some issues.it is working when all rows are same but whenever it needs to sort a sheet with variable rows , it is selecting the cells but not sorting. Pls Help. Sub Sort() Dim i As Long Dim LastARow As Integer LastARow =...
  5. D

    clenaner code to sort

    hi guys used the recorder for this finalrow = Cells(Rows.Count, "A").End(xlUp).Row ActiveWorkbook.Worksheets("Domestic NI").Sort.SortFields.Clear ActiveWorkbook.Worksheets("Domestic NI").Sort.SortFields.Add Key:=Range( _ "A10:A" & finalrow), SortOn:=xlSortOnValues...
  6. D

    Looking for VBA code to efficiently Sort of Multiple Columns

    I originally used the following to code to successfully perform my sort. Range("g7:S1826").Select ActiveWorkbook.Worksheets("TeamSelection").Sort.SortFields.Clear ActiveWorkbook.Worksheets("TeamSelection").Sort.SortFields.Add Key:=Range( _ "k7:k1826")...
  7. D

    Selecting all data on a Worksheet

    I have recorded a macro to sort my worksheet in a specific order and I get the following VBA. Cells.Select ActiveWorkbook.Worksheets("DReg").Sort.SortFields.Clear ActiveWorkbook.Worksheets("DReg").Sort.SortFields.Add Key:=Range( _ "A2:A10"), SortOn:=xlSortOnValues...
  8. J

    Sort By Column D THEN auto-scroll to currently selected Row's Column D value?

    I have code that sorts from A-Z based on Column D's values. After the Sort completes the cursor parks itself at B4. Works fine, but instead of parking at B4 I'd like to have the cursor scroll to the Value that was in Column D for the Row that was selected when the Sort macro was run. Here's...
  9. T

    I am trying to auto filter across multiple sheet

    I want to filter across multiple sheets on column B desc: Sub Autofilter_Worksheets() Dim p As Integer, q As Integer p = Worksheets.Count For q = 1 To p With Worksheets(q) .Range (B1), SortOn:=xlSortOnValues, Order:=xlDescending, DataOption:= _ xlSortNormal End With Next q End Sub
  10. J

    Sort By Date THEN auto-scroll to current date

    I have a macro that sorts my data based on dates in Column B. As you can see, after the sort completes the cursor parks itself at Cell A1. What I'd like is for it to auto-scroll down to the current date (or closest date) in Column B. Here's my current code: Sub SortByDate()...
  11. A

    VBA custom sort

    I have recorded the following macro while doing my custom sort: Sub sortMembers() Dim ws As Worksheet: Set ws = Worksheets("RefindData") ws.sort.SortFields.Clear ws.sort.SortFields.Add Key:=Range( _ "A2:A9998"), SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:= _...

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