Workbook vs Workbooks

lezawang

Well-known Member
Joined
Mar 27, 2016
Messages
1,805
Office Version
  1. 2016
Platform
  1. Windows
Hi
Why in excel VBA there are 2 classes one is Workbook and the other is Workbooks. It is so confusing to have 2, what is the reason? Thanks
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
For each Workbook in Workbooks, Sheet in Sheets etc.

One is an object, one is a group of that object I believe
 
Upvote 0
Yes, it is confusing until you start grasping the object hierarchy of Excel. Workbooks and Workbook are two different objects.

Application.Workbooks is a collection object that contains all the open workbook objects or items. The relationship might be pictured as:
Code:
Application
    |___Workbooks
            |___Workbook
An open workbook will belong to the workbooks collection. Similarly, a worksheet will belong to the worksheets collection.

Different objects have different properties. These are the MSDN pages listing the properties of the Workbook object and the of the Workbooks object.

Workbooks: https://msdn.microsoft.com/en-us/vba/excel-vba/articles/application-workbooks-property-excel
Workbook:https://msdn.microsoft.com/en-us/library/microsoft.office.tools.excel.workbook_properties.aspx
 
Upvote 0
Thanks for your reply and help. The code below use WorkSheets(5) to clear the content of sheet5.
My questions:

1) why WorkSheets() is used not WorkSheet()? I was thinking to use WorkSheet(5).Cells.......
2) Cells is not property of WorkSheets()? so how the author called it from WorkSheets().Cells ??
3) Also ClearContents is not part of Cells but excel did not complain or give error message?
+++++

Private Sub CommandButton2_Click()
Worksheets(5).Cells.ClearContents
End Sub
 
Upvote 0
3) Also ClearContents is not part of Cells but excel did not complain or give error message?

Not sure what is meant here, clearcontents is used on a range, cells is a range.
 
Upvote 0

Forum statistics

Threads
1,214,920
Messages
6,122,279
Members
449,075
Latest member
staticfluids

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top