A Const statement can specify scope the same way a variable declaration can, and the same rules apply:
Const conPi = 3.14159
Private Const conMax = 4096
Public Const conMin = 0
As with any other type of data, public constants are available only in the workbook where they're declared and in any workbooks with a reference link to the workbook where they're declared. In addition, you can limit the scope of a public constant to a single workbook by using the Option Private Module statement in the module where the constant is declared.