Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a grocery store shopping list and I would like to set up a macro that would sort and display the list, if there is a value in column D which has a header name of Qty. I would like it sorted by store name/number (in reverse order ), then by Name, Aisle, and Depth. Below is the code I recorded only if there is a number greater than 1 it puts it at the end of the list since I added a new store.
The sheet headings are Item, Aisle, Depth, Store, Price, Notes. Any help as always is greatly appreciated. Sub SortShoppingList() ' ' ' ' Range("A1").Select Selection.AutoFilter Field:=4, Criteria1:="<" Range("A1:G1024").Sort Key1:=Range("E2"), Order1:=xlDescending, Key2:= _ Range("B2"), Order2:=xlAscending, Key3:=Range("C2"), Order3:=xlAscending _ , Header:=xlGuess, OrderCustom:=1, MatchCase:=False, Orientation:= _ xlTopToBottom, DataOption1:=xlSortNormal, DataOption2:=xlSortNormal, _ DataOption3:=xlSortNormal End Sub -- Regards Michael Koerner |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Please assist... | Excel Worksheet Functions | |||
Formula Assist | Excel Discussion (Misc queries) | |||
ADO assist | Excel Programming | |||
Please assist | Excel Worksheet Functions | |||
Assist in converting Lotus Macro to Excel? | Excel Programming |