Auto sort and hide rows with zero quantity

mamapear

New Member
Joined
May 27, 2019
Messages
1
Hello,

I have data pulling into a worksheet from a previous worksheet. There is data populating rows 3-107 and columns A-I.

I want to sort the whole table by the values in column G in descending order, then hide any rows that contain a zero value in the G column.

Is there a way to do this automatically? I know how to do this manually, but I want the workbook user(s) to get the information automatically.

Thank you in advance for any guidance you are able to provide.
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
you can try PowerQuery (Get&Transform)

select your table (Ctrl+T) - choose with/without headers
from Data - select From Table
it will open PowerQuery Editor with your table
select your column
filter by 0
sort descending
Close&Load (to the sheet)
---
after that you can use Ctrl+Alt+F5 to refresh QueryTable if any new data will be added into the source table
 
Upvote 0
Welcome to the Forum!

This macro will do what you requested.
Code:
Sub mamapear()
Dim R As Range, c As Range
Set R = Range("A3").CurrentRegion
Application.ScreenUpdating = False
R.Sort key1:=[G3], order1:=xlDescending
For Each c In R.Columns(7).Cells
    If c.Value = 0 Then c.EntireRow.Hidden = True
Next c
Application.ScreenUpdating = True
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,643
Messages
6,120,707
Members
448,981
Latest member
recon11bucks

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