+ Reply to Thread
Results 1 to 3 of 3

sort table after data update

Hybrid View

  1. #1
    Valued Forum Contributor
    Join Date
    11-20-2003
    MS-Off Ver
    2010, 2016
    Posts
    1,176

    sort table after data update

    I have a spreadsheet with 3 tables (all side-by-side). Table one has 8 rows of data; table two has 2 rows of data; table three has 3 rows of data. I am looking for assistance on how to sort each table in desceding order (by sales). Basically I want to do a sort everytime there is a change of values in any of the tables. I have attached a sample spreadsheet to clarify the table layout and the manner in which the values change within each table. Any assistance is greatly appreciated. Thanks.
    Last edited by maacmaac; 10-14-2009 at 09:49 AM.

  2. #2
    Forum Guru
    Join Date
    08-26-2007
    Location
    London
    Posts
    4,606

    Re: sort table after data update

    I named your three tables "One", "Two" and "Three" and then put this in the sheet module - seems to work. Right-click on the sheet tab, view code and paste in.
    Private Sub Worksheet_Calculate()
    
    Application.EnableEvents = False
    Range("One").Sort Key1:=Range("One")(1, 3), Order1:=xlDescending, Header:=xlNo
    Range("Two").Sort Key1:=Range("Two")(1, 3), Order1:=xlDescending, Header:=xlNo
    Range("Three").Sort Key1:=Range("Three")(1, 3), Order1:=xlDescending, Header:=xlNo
    Application.EnableEvents = True
    
    End Sub

  3. #3
    Valued Forum Contributor
    Join Date
    11-20-2003
    MS-Off Ver
    2010, 2016
    Posts
    1,176

    Re: sort table after data update

    That works great... thanks for your assistance.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1