dbt-excel was an April fools joke. Though, the joke
inspired adding Excel capabilities to dbt-duckdb
. If you would like to use
dbt-excel
, use dbt-duckdb
with the
plugins capabilities to read from and write to Excel files.
Welcome to dbt-excel, the revolutionary dbt adapter that combines the rigor of dbt with the flexibility and familiarity of Excel. Get ready to change the way you look at data analytics forever.
- Integrate Excel with dbt: query data that you didn't know existed, for people who didn't know you existed, all from Excel!
- Use your favorite Excel functions: VLOOKUP, sheet support, averageif, and more, because life's too short for learning SQL functions.
- Runs blazingly fast queries thanks to duckdb running in the background, so you can have your cake and eat it too!
- Monitor your data assets, collaborate on data models, and document your queries, all within Excel. Remember, if it's not in Excel, it's not worth doing!
To install dbt-excel, just run the following command in your terminal:
python -m pip install dbt-excel
This section details how to setup a local environment to develop this dbt adapter.
-
Clone this repo to your local machine and change directory:
git clone [email protected]:godatadriven/dbt-excel.git cd dbt-excel
-
Create a virtual environment:
python -m virtualenv .venv source .venv/bin/activate
-
To install dbt-excel in editable mode, run the following command in your terminal:
python -m pip install -e .
The default profile will create a duckdb file in /tmp, of the custom excel
type. You can adjust the path if necessary.
dbt_excel:
target: dev
outputs:
dev:
type: excel
path: /tmp/dbt.duckdb
Steps:
cd
into thedbt_project
directory, then rundbt run -s my_first_dbt_model --profiles-dir .
this will run the models in themodels/example/my_first_dbt_model.sql
file.- A Excel file exists in
sources/people.xlsx
, which will be read and used by the models. The result will be written tofirst_model.xlsx
. - Boom, you just read from AND wrote to Excel!
- Savour this moment, it's precious.
Enterprise Architect:
As an Enterprise Architect, I have been involved in countless failed digital transformation projects. They all make the same mistake. They forget one thing: all data lives in Excel. By moving away from enterprise-grade solutions like Excel to complicated stacks based on FivetPython, dbt and XXX, companies neglect their core competence. 1,048,576 rows ought to be enough for anybody. The only digital winners are the companies that build their stack on top of Excel.
CEO:
Companies worldwide are pouring trillions of dollars into digital transformation. But they forget one thing. In the end, all data lives in Excel. Dbt-excel combines the rigour of software engineering from dbt with the flexibility of Excel. True data democratization starts and ends with Excel.
Anonymous Analyst:
I used to have impostor syndrome working with DBT. With Excel I know I Excel.
Big credits to Josh Wills' excellent DBT Duckdb adapter which inspired this project!