This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Explicit | |
' Constants for better maintainability | |
Const CONTROL_PANEL_SHEET_NAME As String = "ControlPanel" | |
Const COLUMN_MAPPING_SHEET_NAME As String = "MappingSheet" | |
Const MAPPED_SHEETS_TABLE_NAME As String = "MappedSheetsTable" | |
Const REFERENCE_TABLE_NAME As String = "ReferenceTable" | |
Const CLASS_LIBRARY_MAP_TABLE_NAME As String = "ClassLibraryMapTable" | |
Const REFERENCE_DATA_START_COL As Long = 20 | |
Const MAX_ROW_CHECK As Long = 20 |