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
555 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 09 November 2013
In order to navigate a workbook using VBA it's essential to understand how to refer to, activate and select the various types of sheet. This video explains the difference between worksheet, chart and sheet objects and also demonstrates how to select, copy, move, delete and rename them. You'll also see how to change the visibility of the sheets in a workbook, including how to make sheets not just hidden, but VERY hidden!
See our full range of VBA training resources, or test your knowledge of VBA with one of our VBA skills assessment tests.
There are no files which go with this video.
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: | Costas |
When: | 05 Oct 17 at 08:56 |
Hi,
I was wondering, can I apply a property to all selected worksheets when I am in a group mode? For example below the property interior color is applied only to Sheet 1 even if I have selected 2 worksheets. Why is that?
Sub SelectWorksheetsAndApplyProperty()
Worksheets("Sheet1").Select
Worksheets("Sheet3").Select
Selection.Range("a1:a5").Interior.Color = rgbBlue
End Sub
Thanks in advance for the answer.
From: | Andy B |
When: | 05 Oct 17 at 09:09 |
The word Selection refers to the currently selected cells. To achieve what you're trying to, you should actually miss this out. To amend the same range on lots of sheets at the same time, use something like this:
Sheets(Array("Sheet1", "Sheet3")).Select
Range("A1:A5").Interior.Color = vbGreen
From: | Costas |
When: | 05 Oct 17 at 12:13 |
Sorry to bother, but I run the macro you mention and does not do the job. It applies the property only in Sheet1 were it supposed to apply the property in both Sheets1 and Sheet3
From: | Andy B |
When: | 05 Oct 17 at 12:37 |
Hmmm ... you are so right! I should have tested it better. Further investigation suggests that you can't do this; instead, you'd need to loop over the worksheets that you want to alter, making the same change to each. For example, this code would definitely worked (I've tested it properly this time):
Sub ColourSheets()
Dim ws As Worksheet
'loop over each of the worksheets of interest
For Each ws In Sheets(Array("Sheet1", "Sheet3"))
'change this worksheet's colour for top few cells
ws.Range("A1:A5").Interior.Color = vbYellow
Next ws
End Sub
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.