ニュース

Welcome to the VBA Code Repository! This repository contains a collection of tested examples and reusable VBA (Visual Basic for Applications) code for automating tasks in Microsoft Excel. The scripts ...
In Excel 2016, Power Query is no longer an Excel add-in but a native feature of Excel, and what’s more, you can now use VBA to create and manage Power Query queries. I’ve found two sources of ...
In Excel 2016, Power Query is no longer an Excel add-in but a native feature of Excel, and what’s more, you can now use VBA to create and manage Power Query queries. I’ve found two sources of ...
別シートのセルは、「Sheets("Sheet2").Range("B3")」のようにシート名をピリオドでつないで表すことができます。ところが、このセルを選択状態にしようとして「Sheets("Sheet2").Range("B3").Select」のように記述するとエラーになります。 別シートのセルを選択する場合は、まずシートを選択し ...
今回は、VBAだけでは不可能だった機能を実現可能にするJScriptについて、その使い方を解説します。動作確認は、Windows 7、Excel 2010、VBA 7.0および ...
この形式は、Windowsのコントロールパネルにある「地域と言語」の設定における標準の日付形式(短い形式)に準拠しています。 Excelが管理する日付の実体であるシリアル値(「41694」などの数値)は、Value2プロパティで取得できます。
Version control of VBA scripts This repo hosts an example of how to use a Python script and pre-commit hooks of git to track changes to VBA code in Excel files. The change tracking of VBA code is ...