Importing Data into Power BI
Importing Data into Power BI
Before building dashboards, the first step is importing data. Power BI supports many data sources.
Common Data Sources
- Excel files
- CSV files
- SQL databases
- Cloud services
Example SQL Query
SELECT ProductName, SUM(SalesAmount) AS TotalSales
FROM Sales
GROUP BY ProductName
ORDER BY TotalSales DESC;

