Hide rows with zero values in all days of the month

vladimiratanasiu

Active Member
Joined
Dec 17, 2010
Messages
346
Office Version
  1. 2021
  2. 2019
Platform
  1. Windows
Hello!

I have a sheet containing inventories of different stocks from a company, as is shown in the link Inventory stocks-packaging .xlsm .The difference(s) between system list (total quantities) and inventories values are summarized and placed in the worksheet Summary table, according to day when they were collected. At the same time, every inventory list, generated by the informatic system, includes only some elements of the main list from the file Summary table. As a result, not all the rows will be populated with numerical data and a large number of them will show only the 0 value for different products. In this condition, I wonder if there is any formula or macro to automatically filter and show only the rows of products with no zero values in any day of the month, and hide the ones without positive/negative numbers.

Thank you!
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
See if this macro does what you want:
VBA Code:
Sub showVals()
    Range("A1").CurrentRegion.AutoFilter 34, "<>0"
End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,215,054
Messages
6,122,895
Members
449,097
Latest member
dbomb1414

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