Sort column in table when closing workbook

ipbr21054

Well-known Member
Joined
Nov 16, 2010
Messages
5,602
Office Version
  1. 2007
Platform
  1. Windows
I have the following code in use.
I have a table of which is Row 1 headers,then the value start in row 2 then down the page.
Columns are A-K

Column G are dates & at present they are sorted OLD to NEW then down the page.
How do i edit the code shown so the dates are sprted NEW to OLD please
I tried to add Ascending / Descending etc but got in a mess so posted what currently works for me.

Thanks


VBA Code:
Private Sub Workbook_BeforeClose(Cancel As Boolean)
    Worksheets("RANGER").Range("D2").ClearContents
    Range("G2").CurrentRegion.Sort Key1:=Range("G2"), Header:=xlYes
End Sub
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Try:
VBA Code:
Private Sub Workbook_BeforeClose(Cancel As Boolean)
    Worksheets("RANGER").Range("D2").ClearContents
    
   Range("G2").CurrentRegion.Sort Key1:=Range("G2"), Order1:=xlDescending, Header:=xlYes
End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

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