EXCEL

Application.Calculation Property

Application.Calculation property 計算モードを表す**xlcalculation** の値を取得または設定します。 構文 expression.Calculation ※expression**Application** オブジェクトを 表す変数。  …

Application.EnableEvents Property

Application.EnableEvents property 指定のオブジェクトに対してイベントが発生可能な場合は True を指定します。 読み取り/書き込みが可能な Boolean です。 構文 expression.EnableEvents ※expression**Application** オブジェクト…

Application.ScreenUpdating Property

Applicationオブジェクト.ScreenUpdating プロパティ マクロの速度を向上させるため、画面を更新しないようにします。 この場合、マクロの処理過程は見ることができませんが、実行速度が速くなります。 マクロが終了した後は、ScreenUpdating プロパティの値を True に戻してください。 構…

With…End With Statement

With...End With ステートメント オブジェクトまたは構造のメンバーにアクセスする場合にステートメントで簡単な構文を使用できるように、単一のオブジェクトまたは構造を繰り返し参照する一連のステートメントを実行します。 構造体の使用時には、メンバー値の読み取りまたはメソッドの呼び出しのみを行うことができます。ま…

Range.Clear Method

Range.Clear method オブジェクト全体をクリアします。 構文 expression.Clear ※expression は Range オブジェクトを表す変数です。 戻り値:バリアント型 使用例 実行結果   その他のClearメソッド…

Application.FileDialog Property

Applicationオブジェクト.FileDialogプロパティ ファイルダイアログのインスタンスを表す**FileDialog** オブジェクトを返します。 構文 expression.FileDialog (fileDialogType) ※expression**Application** オブジェクトを 表す…

Range.RemoveDuplicates Method

Rangeオブジェクト.RemoveDuplicatesメソッド 値の範囲から重複した値を削除します。 構文 expression.RemoveDuplicates (Columns , Header) ※expression is Rangeオブジェクト Parameters Name 必須/オプション データ型 説…

Range.Sort Method

Range.Sort メソッド (Excel) 値の範囲を並べ替えます。 構文 expression.Sort (Key1, Order1, Key2, Type, Order2, Key3, Order3, Header, OrderCustom, MatchCase, Orientation, SortMethod…

Application.StatusBar Property

Applicationオブジェクト.StatusBarプロパティ ステータスバーのテキストを返すか設定します。 値の取得および設定が可能です。 構文 expression.StatusBar ※expression**Application** オブジェクトを 表す変数。 注釈 Microsoft Excel がステー…

Range.SpecialCells Method

Rangeオブジェクト.SpecialCellsメソッド 指定した種類と値に一致するすべてのセルを表すRangeオブジェクトを返します。 構文 expression.SpecialCells (Type, Value) ※expression は Range オブジェクトを表す変数です。 戻り値: Range 使用例 …