1

I've been working on creating workbook and share them on PowerBI Preview service, and today I found that I couldn't schedule a refreshment on my workbook.

Inside this workbook, I connect with my data source(Azure SQL database) by using the Excel PowerQuery. At the moment that I add the scheduled refreshment, I got the message: you can't schedule refresh because this dataset contains data sources that do not yet support refresh.

Does anyone see why this didn't work, any help will be really appropriated.

Answer: I should load directly my data into a data model instead of into a worksheet, now the refreshment works fine!


Now I got another question, I have two tables like below

  1. Table devices.

    deviceid, network_type, location, language
    id001,wifi,us,english

    id002,gsm,france,french

    id003,wifi,italy,italian.....

  2. Table data consuming.

    deviceid, volume_consuming, date

    id001, 200, 04-03-2015

    id001,300, 04-05-2015

    id002,500, 04-06-2015

    id002, 600, 04-05-2015

    id003,800, 04-03-2015

    id003, 1000, 04-06-2015

I need to calculate average data consuming per device and aggregate by date, then I created this table below

  1. Table aggregation by date

    date, avg_data_per_device

    04-03-2015, 500

    04-05-2015, 450

    04-06-2015, 750

Now comes my question, I want to add some filter to my graph which is based on the third table, since there are no deviceid in this table(it's an aggregation table), can I do some manipulation under PowerBI to acheive this, does anyone have any ideas please, thanks in advance !!!

4

1 回答 1

0

您可能会遇到两个常见问题。首先,要在 Excel 工作簿中使用 SQL Azure 进行刷新,您需要使用 Power Query UI 来构建查询(如果您指定自定义查询,它将不起作用)。其次,如果您有其他从 excel 工作表加载数据的查询,它也不起作用。建议将您的查询配对,直到您只有一个用于 SQL Azure 的查询。如果这一切都不能解决问题,那么您应该使用 Power BI UI 中问号图标下方的“联系支持”功能。

感谢您使用 Power BI,-Lukasz

于 2015-05-11T14:23:55.130 回答