VBA - sort in ascending and descending order (based on if value is positive or negative)

macroos

New Member
Joined
May 30, 2018
Messages
45
Hi All.

I would like to sort my set of data (contains both negative and positive numbers) based in ascending order (if the values are negative) and in descending order (if the values are positive).
How can I do that?
Below, I was able to sort the data on column E in ascending order.
I need help in sorting in descending order if the values are positive.

Sub Step5()


Dim strDataRange As Range
Dim keyRange As Range
Dim lrow As Long
lrow = Cells(Cells.Rows.Count, "B").End(xlUp).Row

Set strDataRange = Range("B2:L" & lrow)
Set keyRange = Range("E1")
strDataRange.Sort Key1:=keyRange, Order1:=xlAscending

End Sub
 
Yes, there are positive and negative numbers in Column E.

When I clicked the macro, it sorted all in ascending order and then the error pops up.
Only the negative numbers were sorted the way I wanted.
Hmm, just so you know, the code I posted works on the test worksheet that I set up. Any chance you can post your workbook to DropBox so that I (or anyone else who might want to try their hand at answering your question) can download it in order to try my (their) code directly on your actual data? If you do not want do that, but if you trust that I will not abuse your data, you can then send it directly to me at...

rick DOT news AT verizon DOT net

If you do that, please put the thread title in the email so that I can more easily find this thread again.
 
Upvote 0

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
I emailed to you.
I got it. The problem was that your negative numbers are display wrapped in parentheses, not prefixed with a minus sign. Change this line of code...
Code:
FirstPositive = Columns("E").Find("[B][COLOR="#FF0000"][SIZE=4]-[/SIZE][/COLOR][/B]*", , xlValues, , xlRows, xlPrevious, , , False).Row + 1
to this and the macro should work fine...
Code:
FirstPositive = Columns("E").Find("[B][COLOR="#FF0000"][SIZE=4]([/SIZE][/COLOR][/B]*", , xlValues, , xlRows, xlPrevious, , , False).Row + 1
 
Upvote 0

Forum statistics

Threads
1,216,350
Messages
6,130,139
Members
449,560
Latest member
mattstan2012

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