Read our blogs, tips and tutorials
Try our exercises or test your skills
Watch our tutorial videos or shorts
Take a self-paced course
Read our recent newsletters
License our courseware
Book expert consultancy
Buy our publications
Get help in using our site
547 attributed reviews in the last 3 years
Refreshingly small course sizes
Outstandingly good courseware
Whizzy online classrooms
Wise Owl trainers only (no freelancers)
Almost no cancellations
We have genuine integrity
We invoice after training
Review 30+ years of Wise Owl
View our top 100 clients
Search our website
We also send out useful tips in a monthly email newsletter ...
Posted by Andrew Gould on 15 December 2016
You can do several useful things with dates in Pivot Tables, including grouping, filtering and applying timelines. This video shows you how to do all those things using VBA.
See our full range of VBA training resources, or test your knowledge of VBA with one of our VBA skills assessment tests.
This video has the following accompanying files:
File name | Type | Description |
---|---|---|
Movies.xlsm | Excel workbook with macros |
Click to download a zipped copy of the above files.
There are no exercises for this video.
You can increase the size of your video to make it fill the screen like this:
Play your video (the icons shown won't appear until you do), then click on the full screen icon which appears as shown above.
When you've finished viewing a video in full screen mode, just press the Esc key to return to normal view.
To improve the quality of a video, first click on the Settings icon:
Make sure yoiu're playing your video so that the icons shown above appear, then click on this gear icon.
Choose to change the video quality:
Click as above to change your video quality.
The higher the number you choose, the better will be your video quality (but the slower the connection speed):
Don't choose the HD option shown unless your connection speed is fast enough to support it!
Is your Wise Owl speaking too slowly (or too quickly)? You can also use the Settings menu above to change your playback speed.
From: | bushman |
When: | 30 Jan 20 at 12:40 |
Hi Andrew,
Thanks for the videos.
How would you do a drill down for all transaction by picking a year and month using VBA?
Thanks
Marlon
From: | Andrew G |
When: | 03 Feb 20 at 10:04 |
Hi Marlon,
Perhaps the easiest way to do this is to apply the ShowDetail property to the cell into which you want to drill. The example code below assumes you have a pivot table arranged with years in the Rows area, month names in the column area and anything in the Values area.
Sub DrillDownOnDatePivot()
Dim DrillYear As String
Dim DrillMonth As String
Dim ws As Worksheet
Dim pt As PivotTable
Dim RowNumber As Long
Dim ColumnNumber As Long
DrillYear = "2004"
DrillMonth = "May"
Set ws = Worksheets("DatePivot")
Set pt = ws.PivotTables("DatePivotTable")
RowNumber = pt.RowRange.Find(DrillYear).Row
ColumnNumber = pt.ColumnRange.Find(DrillMonth).Column
Debug.Print RowNumber, ColumnNumber
ws.Cells(RowNumber, ColumnNumber).ShowDetail = True
End Sub
You can adjust the DrillYear and DrillMonth values to drill into different cells in the pivot table. I hope that helps!
Kingsmoor House
Railway Street
GLOSSOP
SK13 2AA
Landmark Offices
99 Bishopsgate
LONDON
EC2M 3XD
Holiday Inn
25 Aytoun Street
MANCHESTER
M1 3AE
© Wise Owl Business Solutions Ltd 2024. All Rights Reserved.