Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Azatus
New Member

I need help with an awkward data

So I have this dataset from google sheets. Link to the sheet
How can I export this correctly so I can build dashboards from it? It also should update everytime someone changes a document. (Please note that 1st row is a header)

1 ACCEPTED SOLUTION
v-yanjiang-msft
Community Support
Community Support

Hi @Azatus ,

There's a Google Sheets connector in Power BI Desktop.

vyanjiangmsft_0-1690253027263.png

In Desktop, once the data source is changed, directly click the Refresh button, data will update then.

vyanjiangmsft_1-1690253223717.png

In Service, you can configure a schedule refresh which can refresh the dataset daily, if you wnat to refresh the dataset once the data source is changed, you can put the sheet in SharePoint, and create a Power automate flow as below:

vyanjiangmsft_2-1690256299502.png

Best regards,

Community Support Team_yanjiang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-yanjiang-msft
Community Support
Community Support

Hi @Azatus ,

There's a Google Sheets connector in Power BI Desktop.

vyanjiangmsft_0-1690253027263.png

In Desktop, once the data source is changed, directly click the Refresh button, data will update then.

vyanjiangmsft_1-1690253223717.png

In Service, you can configure a schedule refresh which can refresh the dataset daily, if you wnat to refresh the dataset once the data source is changed, you can put the sheet in SharePoint, and create a Power automate flow as below:

vyanjiangmsft_2-1690256299502.png

Best regards,

Community Support Team_yanjiang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

lbendlin
Super User
Super User

Something like this  (replace the source accordignly)

 

 

 

 

let
    Source = Excel.Workbook(File.Contents("C:\Users\xxx\Downloads\sales.xlsx"), null, true),
    Лист1_Sheet = Source{[Item="Лист1",Kind="Sheet"]}[Data],
    #"Removed Top Rows" = Table.FirstN(Лист1_Sheet,1) & Table.Skip(Лист1_Sheet,3),
    #"Promoted Headers" = Table.PromoteHeaders(#"Removed Top Rows", [PromoteAllScalars=true]),
    #"Renamed Columns" = Table.RenameColumns(#"Promoted Headers",{{"Июль", "Июль.1"}}),
    #"Filled Down" = Table.FillDown(#"Renamed Columns",{"Статус кофейни", "Инвестор", "ID", "Тип объекта", "Кагорта abc", "Релокация (к-во) ", "Дата запуска", "Адрес"})
in
    #"Filled Down"

 

 

Note that you don't want to have that many columns - you should unpivot all the date columns.

 

 

It also should update everytime someone changes a document

 

Not possible with an import mode data source. Not sure if Power Automate can subscribe to Google Sheet changes.

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors