Hello Ken,

The scope will change pending your declaration.

Procedural scope:

Sub tester()
Const FilePath As String = "V:\B&E Ops Support\Billing And Enrollment\B&E National Unit\National & ASO Profile and COBRA Sheets\"
MsgBox FilePath
End Sub
Modular Scope:

Private Const FilePath As String = "V:\B&E Ops Support\Billing And Enrollment\B&E National Unit\National & ASO Profile and COBRA Sheets\"
 
Sub tester()
MsgBox FilePath
End Sub
Project-wide scope:

Public Const FilePath As String = "V:\B&E Ops Support\Billing And Enrollment\B&E National Unit\National & ASO Profile and COBRA Sheets\"
 
Sub tester()
MsgBox FilePath
End Sub
Hope this helps.