Pivot Table Data

G

Guest

I have a data table in a sheet that I keep adding to. a pivot table was
created from this data. how can i have new data added to the data table show
up in the pivot table when i refresh.
 
G

Guest

I don't think you can do this without a User Defined Function such as ...

'/========================================/
Function IsHidden(rng As Range) As Boolean
Application.Volatile
On Error Resume Next
IsHidden = False
If rng.EntireColumn.Hidden = True Or _
rng.EntireRow.Hidden = True Then
IsHidden = True
End If
End Function
'/========================================/

Hope this helps,
Gary Brown
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top