View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
PY & Associates PY & Associates is offline
external usenet poster
 
Posts: 145
Default Arrange sheet in specific order with VBA

How about

copy All Records to sheet 6;
replace Black, Red, Blue, Green with order1, order2, order3, order4;
sort;
reverse the replaced text;

"SITCFanTN" wrote in message
...
I have a report I'm sorting into numerous sheets in the same workbook.

The
first sheet is titled "All Records". I want to populate "sheet 6" with

all
the data from the "All Records" sheet but I want the data in order by
specific text in column B. I want all items with "Black" in column B

first,
followed by all rows with "Red" next, then "Blue" followed by "Green".

How
would I code something like this? I appreciate your help, thank you.