Hello All,
I am new to power bi. I am using a SQL statement to pull data into our model. This SQL statement takes 10 seconds to complete in SQL Server Management Studio; However it is taking about 35 to 40 mins to complete in Power BI. Can you please assist? below is the SQL:
SELECT
location
SalesDate
,sum(qty)
,sum(amount)
,Sum(cost*qty)
,sum(promocost)
,Department
,ProductNumber
,Description
FROM
SalesTable
WHERE
SalesDate >= '01/01/2017'
GROUP BY
location
SalesDate
Department
ProductNumber
Description
Data Connectivity mode is Import.
Thank you in advance.
Joe