diff --git a/ENI2/Excel/ExcelUtil.cs b/ENI2/Excel/ExcelUtil.cs index be898e4f..89017150 100644 --- a/ENI2/Excel/ExcelUtil.cs +++ b/ENI2/Excel/ExcelUtil.cs @@ -2061,7 +2061,7 @@ namespace ENI2.Excel private static bool ScanCREW(Message crewMessage, ExcelReader reader, bool isOldVersion) { crewMessage.DeleteElements(); - const string sheetTitle = "6. CREW - Arrival"; + string sheetTitle = "6. CREW - Arrival"; // 6. CREW - Arrival // 5.9.22: Changed this area to work like reading from a Dakosy Sheet (by values in rows, not cell names) if (reader.HasWorksheetNamed(sheetTitle)) @@ -2173,7 +2173,7 @@ namespace ENI2.Excel private static bool ScanCREWD(Message crewdMessage, ExcelReader reader) { crewdMessage.DeleteElements(); - const string sheetTitle = "7. CREW - Departure"; + string sheetTitle = "7. CREW - Departure"; // CREW DEPARTURE if (reader.HasWorksheetNamed(sheetTitle)) { @@ -2285,7 +2285,7 @@ namespace ENI2.Excel { List newPasList = new List(); - const string sheetTitle = "8. PAX - Arrival"; + string sheetTitle = "8. PAX - Arrival"; if (reader.HasWorksheetNamed(sheetTitle)) {