2012/04/19

[Excel][VBA]エラーチェックを無効にしてエラーが出ないようにする

できる逆引き Excel VBAを極める 勝ちワザ700
2010/2007/2003/2002対応 (「できる逆引き」シリーズ)


国本 温子

インプレスジャパン

発売日:2012-02-09


Excelには様々なエラーチェック機能がありますが、それがむしろ迷惑になる場合があります。
なので無効にしてしまいましょう。

Excel全体でエラーチェックを無効にする

書式Application.ErrorCheckingOptions.BackgroundChecking = False

オプション一覧

BackgroundChecking
EmptyCellReferences
EvaluateToError
InconsistentFormula
NumberAsText
OmittedCells
TextDate
UnlockedFormulaCells
ErrorCheckingOptions プロパティ (Microsoft.Office.Interop.Excel)


特定のセルでエラーチェックを無効にする

書式ActiveCell.Errors.Item(xlEmptyCellReferences).Ignore = True

オプション一覧

xlEmptyCellReferences
xlEvaluateToError
xlInconsistentFormula
xlNumberAsText
xlOmittedCells
xlTextDate
xlUnlockedFormulaCells

タグ(RSS)

ブログ アーカイブ