Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I capture the pre-sorted data to an array, then show a form to ask user to
sort descending; In the form, user clicks button after sorting and I want to compare pre sorted to post sorted values; can't pass the presorted array to the buttons click event. Ideas for a workaround? TY |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Not sure if I understand correctly... Code ------------------- Private Sub CommandButton1_Click() Dim a, i As long, myRange Set myRange = Range("a1:a100") If vbYes = MsgBox("Sort Descending Order?",vbYesNo) Then With myRange a = .Value .Sort key1:= .Cells(1,1), order1:= xlDescending, header:= xlNo For i = 1 To .Rows.Count If .Cells(i,1) < a(i, 1) Then MsgBox "Not Sorted in Descengind Order" .Value = a Exit Sub End If Next End With End If MsgBox "Sorted successfully" End Su ------------------- -- jindo ----------------------------------------------------------------------- jindon's Profile: http://www.excelforum.com/member.php...fo&userid=1313 View this thread: http://www.excelforum.com/showthread.php?threadid=55070 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
moving row data to a colunm in sorted order | Excel Worksheet Functions | |||
move a row of data values to a column in sorted order | Excel Discussion (Misc queries) | |||
descending order of a series of data | Excel Worksheet Functions | |||
How to order chart in descending order of Freq? | Charts and Charting in Excel | |||
Top 10 in descending order | Excel Worksheet Functions |