The idea of this project is to perform a data analysis using a database provided by Microsoft for learning purposes: AdventureWorks_DB.
We will use SQL for querying the data and Power BI for visualization and analysis.
- Connect to SQL SERVER using SSMS
- Create the database and add tables (CSV files), obtained from Microsoft Learn in this case
- Read the Business Request to align our analysis with the client's objectives
- Select important columns
- Use Joins
- Filter by requested analysis dates
- Save results (Queries and CSV files)
- Import results through SQL Server using previously saved queries
- Perform important modifications, such as data type adjustments
- Editing and creating relationships between tables
- Create key metrics to present results, such as:
- Budget Amount = SUM(Fact_Budget[Budget])
- Sales - Budget = [Sales] - [Budget Amount]
- Sales / Budget Amount = DIVIDE([Sales], [Budget Amount])
- Build an interactive dashboard