LoginSignup
0
0

More than 1 year has passed since last update.

Excel for MacのVBAでAutoFilterを使う

Posted at

問題

ExcelのVBAでオートフィルターを実行するためには以下のように書きます。

Range("A2:Z100").AutoFilter

しかし、Excel for Macの場合は、RangeオブジェクトにAutoFilterがないため、実行時エラーになります。

解決策

Selectionオブジェクトにしてから利用します。

Range("A2:Z100").Select
Selection.AutoFilter

参考: https://stackoverflow.com/questions/6860328/vba-range-autofilter-fails-on-excel-2011-mac

おしまい。

0
0
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
0
0