LoginSignup
23
36

More than 5 years have passed since last update.

PowerShellで複数のExcelファイルを一括検索する

Last updated at Posted at 2015-03-09

500本あるExcelの設計書の中から「ほげほげ」が書いてあるところを全部探さないといけなくなった。。。
そんな時に!

いろいろと応用も効くと思います!

SrchExcel.ps1
Param(${dir}="", ${word}="")

if (${dir} -eq "") {
    ${dir} = Split-Path $myInvocation.MyCommand.Path -Parent
}

if (${word} -eq "") {
    echo "キーワードが指定されていません。"
    return
}

echo "Dir : ${dir}"
echo "Keyword : ${word}"

${excel} = New-Object -ComObject Excel.Application

Get-ChildItem "${dir}" -Include "*.xlsx","*.xls","*.xlt" -Recurse -Name | % {
    ${childPath} = $_
    ${wb} = ${excel}.Workbooks.Open("${dir}\${childPath}")
    ${wb}.Worksheets | % {
        ${ws} = $_
        ${wsName} = ${ws}.Name
        ${first} = ${result} = ${ws}.Cells.Find(${word})
        while (${result} -ne $null) {
            echo "${childPath}[${wsName}][$(${result}.Row), $(${result}.Column)] : $(${result}.Text)"
            ${result} = ${ws}.Cells.FindNext(${result})
            if (${result}.Address() -eq ${first}.Address()) {
                break
            }
        }
    }
    ${wb}.Close(0)
}

${excel}.Quit()

${ws} = $null
${wb} = $null
${excel} = $null
    [System.GC]::Collect([System.GC]::MaxGeneration)
23
36
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
23
36