Re: Pivot Table: How to hide individual rows but keep Grand Totals
A sample workbook would help along with a clear explanation of the logic to be applied for which rows ought to get hidden.
Lacking that . . .
Unless you are looking for a VBA solution I think you are essentially stuck with manually hiding the rows (assumes none of the built in filters yield the results you want).
However, one possibility is to use a helper column (can be virtually anywhere on the sheet if you want it out of the way) with a formula that tests for a value in the applicable column of the PT.
So, if PT values to be0 tested are in column-A, you could use something along the lines of =IF(A5=X,TRUE,FALSE), where X="the value to test". You could then filter the helper column per your needs.