Yahoo Web Search

Search results

  1. Apr 6, 2023 · 1 つの Workbook オブジェクトを返すには、Workbooks (index) を使用します。 index はブック名またはインデックス番号です。 次の例では、ブック 1 をアクティブにします。

  2. A workbook is a file that contains one or more worksheets to help you organize data. You can create a new workbook from a blank workbook or a template. By default, a new workbook contains three worksheets, but you can change the number of worksheets that you want a new workbook to contain.

  3. Apr 6, 2023 · Microsoft Excel アプリケーションで現在 開いている Workbook オブジェクトのコレクション。 注釈 1 つの Workbook オブジェクトの使用の詳細については、 Workbook オブジェクトに関する ページ を参照してください。

  4. Mar 29, 2022 · The Workbook object is a member of the Workbooks collection. The Workbooks collection contains all the Workbook objects currently open in Microsoft Excel. The ThisWorkbook property of the Application object returns the workbook where the Visual Basic code is running. In most cases, this is the same as the active workbook.

  5. Apr 6, 2023 · Workbook 对象是 Workbooks 集合的成员。 Workbooks 集合包含 Microsoft Excel 中当前打开的所有 Workbook 对象。 Application 对象的 ThisWorkbook 属性返回运行 Visual Basic 代码的工作簿。

  6. Apr 6, 2023 · Workbook オブジェクトを表す変数。 注釈 このプロパティでオブジェクト修飾子を指定しないコードを使用すると、作業中のブックのすべてのワークシートが返されます。

  7. Jun 11, 2022 · Workbookオブジェクトは、ワークブックそのものです。1つのワークブックは、1つのExcelファイルです。マクロVBAで複数のブックを扱う場合や、ブックを読込んだり保存したりする場合は、Workbookオブジェクトをしっかり意識しつつVBAを記述しなければ ...

  8. Jun 6, 2019 · VBAでは、一つひとつのExcelファイルをWorkbookオブジェクトとして扱います。 また、Excelファイルは複数開くことができますが、個々のExcelファイルをまとめて管理しているのが Workbooksオブジェクト です。

  9. May 21, 2023 · At a basic level, a workbook is a container for all of your Excel data, charts, and formulas. It’s a file that you create and save within Excel to organize and manage your data in a structured way. When you launch Excel, it automatically creates a blank workbook for you to work with.

  10. To create a workbook in Visual Basic, use the Add method. The following procedure creates a workbook. Microsoft Excel automatically names the workbook Book N, where N is the next available number. The new workbook becomes the active workbook. Sub AddOne() Workbooks.Add End Sub A better way to create a workbook is to assign it to an object variable.