Access Beginner
Active Member
- Joined
- Nov 8, 2010
- Messages
- 311
- Office Version
- 2016
- Platform
- Windows
Hi all,
I have a pivot table called "PivotTable1" on a sheet called "DataRequestPt". What I have been doing is applying various filters on this Pivot Table and then double clicking on the "CRN" field, which then spits out a data set to a sheet. Is there a way that the out-put be placed on a cheet called "Raw Data". When I recorded a macro to see if I could just updated the code, this is what was returned.
I have a pivot table called "PivotTable1" on a sheet called "DataRequestPt". What I have been doing is applying various filters on this Pivot Table and then double clicking on the "CRN" field, which then spits out a data set to a sheet. Is there a way that the out-put be placed on a cheet called "Raw Data". When I recorded a macro to see if I could just updated the code, this is what was returned.
Code:
Sub PtableCRNOutput()
'
' PtableCRNOutput Macro
'
'
Range("F7").Select
Selection.ShowDetail = True
Range("G8").Select
End Sub