Returning lowest non-zero value from a Pivot Table using VBA

Moosles

New Member
Joined
Apr 1, 2021
Messages
23
Office Version
  1. 2019
Platform
  1. Windows
I'm trying to get a pivot table to return the smallest value from a column called # of Units. The code I have currently is returning zeros with the Min function, how do I get it to ignore zero values and just return non-zero values from the desired column?

VBA Code:
ActiveSheet.PivotTables("PivotTableA").AddDataField ActiveSheet.PivotTables("PivotTableA").PivotFields("# of Units"), "Min of Total Units", xlMin
        With ActiveSheet.PivotTables("PivotTableA").PivotFields("Min of Total Units")
            .NumberFormat = "#,##0.00"
        End With

Thanks!
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Please try something similar to this
=MINIFS(TrackerTbl[Project ID],TrackerTbl[Project ID],">"&0)
 
Upvote 0

Forum statistics

Threads
1,224,817
Messages
6,181,144
Members
453,021
Latest member
Justyna P

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