Ctrl+KB | toggle side bar |
Ctrl+Shift+P | command prompt |
Ctrl+` | python console |
Ctrl+N | new file |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# テーブルオブジェクト内のデータを結合して保存する | |
# | |
# スクリプト中でクリップボードを使うので、スクリプト実行中はクリップボードを操作してはだめ。 | |
# 最後の保存のところが UNC のままだと通らないので、ネットワークドライブとしてマウントしておくこと。 | |
ls -Filter 2012?.xlsx |% -Begin { | |
$excel = New-Object -ComObject Excel.Application | |
$excel.Visible = $true | |
$newBook = $excel.Workbooks.Add() | |
$destSheet = $newBook.Sheets.Item(1) |