├── README.md ├── .gitignore ├── ExemploPalestra.xlsm ├── ApresentacaoEvento.pptx └── .gitattributes /README.md: -------------------------------------------------------------------------------- 1 | # ExcelOnboard5 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Modelos/ 2 | Material/ -------------------------------------------------------------------------------- /ExemploPalestra.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikelSFraga/ExcelOnboard5/master/ExemploPalestra.xlsm -------------------------------------------------------------------------------- /ApresentacaoEvento.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikelSFraga/ExcelOnboard5/master/ApresentacaoEvento.pptx -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # CRLF -> LF by default, but not for modules or classes (especially classes) 2 | * text=auto 3 | *.bas text eol=crlf 4 | *.cls text eol=crlf --------------------------------------------------------------------------------