VBA

Updated: 24 October 2023

Const

Use constants as a replacement for literal values. A constant is a named item that retains a constant value throughout program execution. Use constants anywhere, in place of actual values.

Public Const TEXT_HEIGHT As Long = 50

Miscellaneous

VarType Function

Leave a comment