├── .gitattributes ├── .gitignore ├── Core.bas ├── DateFunctions.bas ├── ErrorDetection.bas ├── ExcelToSql_SolutionToUpdatingTheWebViaExcel.xlsm ├── MoveRangeFunctions.bas ├── README.md ├── Sonya_VBA_Macros_Demo.xlsm ├── UpdatingTheWebViaExcelSpreadsheet.docx └── ValidationSheetFunctions.bas /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyaNadesan/ReusablePerformanceOptimisedVBAFunctions/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | README.md 2 | *.md -------------------------------------------------------------------------------- /Core.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyaNadesan/ReusablePerformanceOptimisedVBAFunctions/HEAD/Core.bas -------------------------------------------------------------------------------- /DateFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyaNadesan/ReusablePerformanceOptimisedVBAFunctions/HEAD/DateFunctions.bas -------------------------------------------------------------------------------- /ErrorDetection.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyaNadesan/ReusablePerformanceOptimisedVBAFunctions/HEAD/ErrorDetection.bas -------------------------------------------------------------------------------- /ExcelToSql_SolutionToUpdatingTheWebViaExcel.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyaNadesan/ReusablePerformanceOptimisedVBAFunctions/HEAD/ExcelToSql_SolutionToUpdatingTheWebViaExcel.xlsm -------------------------------------------------------------------------------- /MoveRangeFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyaNadesan/ReusablePerformanceOptimisedVBAFunctions/HEAD/MoveRangeFunctions.bas -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyaNadesan/ReusablePerformanceOptimisedVBAFunctions/HEAD/README.md -------------------------------------------------------------------------------- /Sonya_VBA_Macros_Demo.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyaNadesan/ReusablePerformanceOptimisedVBAFunctions/HEAD/Sonya_VBA_Macros_Demo.xlsm -------------------------------------------------------------------------------- /UpdatingTheWebViaExcelSpreadsheet.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyaNadesan/ReusablePerformanceOptimisedVBAFunctions/HEAD/UpdatingTheWebViaExcelSpreadsheet.docx -------------------------------------------------------------------------------- /ValidationSheetFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyaNadesan/ReusablePerformanceOptimisedVBAFunctions/HEAD/ValidationSheetFunctions.bas --------------------------------------------------------------------------------