Category Archives: Excel VBA

ウィンドウハンドルの列挙

Posted in Excel VBA, 未分類 | Leave a comment

Excel VBA Tips

アクティブワークブックの存在するフォルダパス(¥なし) ActiveWorkbook.Path 画像貼り付け(ブック内に保存) シートオブジェクト.Shapes.AddPicture( _ Filename:=ファイルパ … Continue reading

Posted in Excel VBA, Tips | Leave a comment

数字とアルファベットの相互変換

Function Abc2Num(abc) Abc2Num = Range("$" & abc & "$1").Column End Function Function Num2Abc(num) Num2 … Continue reading

Posted in Excel VBA | Leave a comment