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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
chriswragge
Helper I
Helper I

Adobe Analytics connector with Calculated Metrics from multiple report suites

H there,

 

I am trying to get data from multiple report suites with some looping code. I have a Calcualated Metric that I can access when I pull directly from the report suite it was saved under, but not from other report suites.

 

For example, the below code works when I have the source to be reportsuite1, but not when I use reportsuite2

 

{Cube.AddMeasureColumn, "Visits_Calculated", "cm300000555_5b8db57559161d5923cac59b"},    

Is this a limitation of the Adobe Analytics Connector or am I doing something wrong? When using report builder, the api works fine with my required pull, so I assume this is not a technical limitation on Adobe's part...

1 ACCEPTED SOLUTION
chriswragge
Helper I
Helper I

Found the error. I needed to be more explicit in my call.

 

This:

    Source = AdobeAnalytics.Cubes(),
    reportsuite= Source{[Id="myreportsuite)]}[Data],
    #"Added Items" = Cube.Transform(reportsuite,

Need to be:

    Source = AdobeAnalytics.Cubes([HierarchicalNavigation=true]),
    #"MyCompany" = Source{[Name="MyCompany"]}[Data],
    reportsuite= #"MyCompany"{[Id="myreportsuite"]}[Data],
    #"Added Items" = Cube.Transform(reportsuite,

View solution in original post

1 REPLY 1
chriswragge
Helper I
Helper I

Found the error. I needed to be more explicit in my call.

 

This:

    Source = AdobeAnalytics.Cubes(),
    reportsuite= Source{[Id="myreportsuite)]}[Data],
    #"Added Items" = Cube.Transform(reportsuite,

Need to be:

    Source = AdobeAnalytics.Cubes([HierarchicalNavigation=true]),
    #"MyCompany" = Source{[Name="MyCompany"]}[Data],
    reportsuite= #"MyCompany"{[Id="myreportsuite"]}[Data],
    #"Added Items" = Cube.Transform(reportsuite,

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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