deleting all rows with positive numbers in vba

jazzD

New Member
Joined
May 3, 2019
Messages
18
hi i have an exel list with a column with both positive and negative numbers. ive recorded a macro to delete lots of columns and rows but the last step is to delete the rows with positive numbers. what code can i use? i cant write code, only record macros!! thank you!
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Welcome to the Board!

Turn on your Macro Recorder, and record yourself setting up a Filter to only show numbers greater than zero (your positive numbers).
Then, add this following code that will delete all records that are not hidden, and remove the filter:
Code:
'   Deletes all unhidden rows except for the header (first row only)
    Application.DisplayAlerts = False
    ActiveSheet.UsedRange.Offset(1, 0).Resize(ActiveSheet.UsedRange.Rows.Count - 1).Rows.Delete
    Application.DisplayAlerts = True

'   Remove filters
    ActiveSheet.AutoFilterMode = False
 
Upvote 0
Welcome to the Board!

Turn on your Macro Recorder, and record yourself setting up a Filter to only show numbers greater than zero (your positive numbers).
Then, add this following code that will delete all records that are not hidden, and remove the filter:
Code:
'   Deletes all unhidden rows except for the header (first row only)
    Application.DisplayAlerts = False
    ActiveSheet.UsedRange.Offset(1, 0).Resize(ActiveSheet.UsedRange.Rows.Count - 1).Rows.Delete
    Application.DisplayAlerts = True

'   Remove filters
    ActiveSheet.AutoFilterMode = False


thank you so much this worked great, i dont know why i hadnt thought of recording a filter!!
 
Upvote 0
You are welcome.
Glad I was able to help!
:)
 
Upvote 0

Forum statistics

Threads
1,214,924
Messages
6,122,294
Members
449,077
Latest member
Rkmenon

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