アプリケーションとしてのVBA
Excelが使用できるメモリ容量の取得
◆Excelが使用できるメモリ容量の取得
Excel で大きな配列を使用した場合等で、使用できるメモリを確認する必要があるかも
知れません。
私は使ったことは無いのですが...
Excel で使えるメモリの容量を確認できます。
MemoryTotal = MemoryUsed + MemoryFree となります。
Sub test8()
Dim Memory_total As Long
Memory_total = Application.MemoryTotal
MsgBox Memory_total & "バイト"
End Sub
Sub test9()
Dim Memory_free As Long
Memory_free = Application.MemoryFree
MsgBox Memory_free & "バイト"
End Sub
Sub test10()
Dim Memory_used As Long
Memory_used = Application.MemoryUsed
MsgBox Memory_used & "バイト"
End Sub