├── .gitattributes ├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quandl/quandl-excel-windows/df05849761476dcb58e5350ab88d84e1a9eb0476/.gitattributes -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ## Description 2 | 3 | * 4 | 5 | ## Note to the reviewer 6 | 7 | * None 8 | 9 | ## Note to QA 10 | 11 | * None 12 | 13 | ## Dependency 14 | 15 | * None 16 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quandl/quandl-excel-windows/df05849761476dcb58e5350ab88d84e1a9eb0476/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Quandl Excel Add-in for Windows 2 | 3 | The Nasdaq Data Link Excel Add-In allows you to search through, find and download any of Nasdaq Data Link's millions of datasets directly from within Microsoft Excel. It's completely free; usage is unlimited and unrestricted. Currently this Add-in is limited to windows only as it uses features and functions which are only available on the windows version of excel. 4 | 5 | # Code is no longer available to Checkout 6 | 7 | As of December 1st, 2021 Nasdaq Data Link will no longer maintain a public version of the source code. 8 | 9 | This does not mean we will not be monitoring this repo for issues, so if you notice something amiss, please do not hesitate to create an issue. 10 | --------------------------------------------------------------------------------