Auto sort standing as data is inputed

jjhill051

New Member
Joined
Aug 16, 2012
Messages
4
A B C D E F G H I J K L M N O P Q
RankPlayerGPWLTPTS%WLWLWLGSGA +/-
2Jessi10622140.700001000211
3Dan110021.000001000211
1Fil9612140.77801000012-1

<tbody>
</tbody>


Jessi is in row 4, Dan is row 5, Fil is row 6


Based off the Rank formula I have in A4-A6 (Ranks based on amount of points with a tie breaker on %) I want the standings to auto sort to rank the first place team on top and last on bottom as the data is inputed. So (B4-Q4) (B5-Q5) (B6-Q6) will move up and down based on the rank.

Any help will be awesome!! Thannks
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
This will run after columns D E & F are populated.
Place code into sheet module of sheet being sorted.
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    If Not Application.Intersect(Target, Columns("D:F")) Is Nothing Then
        If Not IsEmpty(Range("D" & Target.Row)) And _
            Not IsEmpty(Range("E" & Target.Row)) And _
            Not IsEmpty(Range("F" & Target.Row)) Then
            Range("A3").Sort Key1:=Columns("A"), Header:=xlYes
        End If
    End If
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,460
Messages
6,124,949
Members
449,198
Latest member
MhammadishaqKhan

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