sorton=xlsortonvalues

  1. G

    I need to fixed this Code Please

    I want to sort some rows only, HELP Please.. Sub xx1()On Error Resume Next With Worksheets("Jan").Sort .SortFields.Clear .SortFields.Add Key:=Range("e:e"), _ SortOn:=xlSortOnValues, _ Order:=xlAscending, _ DataOption:=xlSortNormal .SortFields.Add Key:=Range("e14;e26"), _ SortOn:=xlSortOnValues...
  2. S

    Loop Macro on all worksheets

    Can someone help me loop this macro on all worksheets? (theres 47) Sub AM2_Format_Util_Template() ' ' AM2_Format_Util_Template Macro ' ' Columns("AC:AC").Select Selection.Copy Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _ :=False...
  3. 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...
  4. 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...
  5. 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()...
  6. B

    'Subscript out of range' problem when calling a sub from a different sheet

    Dear Experts, Unfortunately I'm not good at vba coding and I cannot figure out why the last Call in the following code does not work and gives a "Runtime error '9' - Subscript out of range" error. The macro to be called runs perfectly when started manually. Here is the main code: Sub...
  7. 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:= _...
  8. hendrikbez

    sort of my cells in a workpage

    I have this as a micro Sub sort1() ' ' sort1 Macro ' ' Range("A4:F18").Select ActiveWorkbook.Worksheets("All").sort.SortFields.Clear ActiveWorkbook.Worksheets("All").sort.SortFields.Add Key:=Range("F4:F18"), _ SortOn:=xlSortOnValues, Order:=xlAscending...
  9. Z

    Key:= Range help

    Hi this works fine right, but I'm trying to change the range as my sheet extended a little. So I don't have to keep changing it I want to change range to C4:C B4:B & B4:AH if I change it all it breaks at each spot range above. I think there is something small I'm missing and cant...

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