DANIEL162
Terugkerende gebruiker
- Lid geworden
- 24 feb 2011
- Berichten
- 1.098
Hoe kan ik sorteren:
Het grootste getal eerst i.p.v het laagste getal eerst.
In mijn voorbeeld geeft hij het laagste getal eerst.
Dus voor alle duidelijkheid:
Niet zo Maar zo
1 - 100
4 - 50
50 - 4
100 - 1
groetjs Daniel
Het grootste getal eerst i.p.v het laagste getal eerst.
In mijn voorbeeld geeft hij het laagste getal eerst.
Code:
With Application
.ScreenUpdating = False
.Calculation = xlCalculationManual
.EnableEvents = False
End With
Range("A9:E13").Sort Key1:=Range("B9")
ActiveWorkbook.Save
With Application
.ScreenUpdating = True
.Calculation = xlCalculationAutomatic
.EnableEvents = True
End With
Dus voor alle duidelijkheid:
Niet zo Maar zo
1 - 100
4 - 50
50 - 4
100 - 1
groetjs Daniel
Laatst bewerkt: