I've attempted with different Power BI tenants as well as Google Analytics accounts and cannot successfully authenticate when attempting to create a data flow using Google Analytics. This is supposed to be supported per these links: https://powerbi.microsoft.com/en-us/blog/power-bi-dataflows-january-updates/ https://docs.microsoft.com/en-us/power-bi/service-dataflows-data-sources Here is a screenshot of the error I am currently receiving (a pop up window appears momentarily to attempt to authenticate, then dissappears before rendering the error you see). Yes, my pop up blocker is turned off. This is the supported M query that works just fine in PBI desktop: let
Source = GoogleAnalytics.Accounts(),
#"23715579" = Source{[Id="23715579"]}[Data],
#"UA-23715579-1" = #"23715579"{[Id="UA-23715579-1"]}[Data],
#"46652768" = #"UA-23715579-1"{[Id="46652768"]}[Data],
#"Added Items" = Cube.Transform(#"46652768",
{
{Cube.AddAndExpandDimensionColumn, "ga:exitPagePath", {"ga:exitPagePath"}, {"Exit Page"}},
{Cube.AddAndExpandDimensionColumn, "ga:hostname", {"ga:hostname"}, {"Hostname"}},
{Cube.AddAndExpandDimensionColumn, "ga:landingPagePath", {"ga:landingPagePath"}, {"Landing Page"}},
{Cube.AddAndExpandDimensionColumn, "ga:pagePath", {"ga:pagePath"}, {"Page"}},
{Cube.AddMeasureColumn, "% Exit", "ga:exitRate"},
{Cube.AddMeasureColumn, "Avg. Time on Page", "ga:avgTimeOnPage"},
{Cube.AddMeasureColumn, "Entrances", "ga:entrances"},
{Cube.AddMeasureColumn, "Entrances / Pageviews", "ga:entranceRate"},
{Cube.AddMeasureColumn, "Exits", "ga:exits"},
{Cube.AddMeasureColumn, "Page Value", "ga:pageValue"},
{Cube.AddMeasureColumn, "Pages / Session", "ga:pageviewsPerSession"},
{Cube.AddMeasureColumn, "Pageviews", "ga:pageviews"},
{Cube.AddMeasureColumn, "Time on Page", "ga:timeOnPage"},
{Cube.AddMeasureColumn, "Unique Pageviews", "ga:uniquePageviews"}
})
in
#"Added Items" It doesn't seem to matter which query I attempt to use, same error anyways. I have attempted to setup the data flow on both the North Central US (Illinois) and the Southeast Asia (Singapore) tenants.
... View more