Mailchimp API connection to PowerBI Error.Expresion 'list_stats' not foundcampaignUpdate via mailchimp APIAlternative to google finance apiWhat is Linux’s native GUI API?Javascript + MailChimp API subscribeUpdating to mailchimp api v2.0API mailchimp : failed to connectMailChimp API Get Subscribers ammountInvalid MailChimp API Key in Mailchimp Export APIRealize Mailchimp Double-Opt-In with API 3.0Connection to MailChimp v3.0 API
What are the purposes of autoencoders?
How should I respond when I lied about my education and the company finds out through background check?
Travelling outside the UK without a passport
How could a planet have erratic days?
Is there any references on the tensor product of presentable (1-)categories?
Does an advisor owe his/her student anything? Will an advisor keep a PhD student only out of pity?
What is the evidence for the "tyranny of the majority problem" in a direct democracy context?
C++ debug of nlohmann json using GDB
How to indicate a cut out for a product window
Freedom of speech and where it applies
Is the U.S. Code copyrighted by the Government?
L1 and Ln cache: when are they written?
What should you do if you miss a job interview (deliberately)?
Added a new user on Ubuntu, set password not working?
Not using 's' for he/she/it
lightning-datatable row number error
How can Trident be so inexpensive? Will it orbit Triton or just do a (slow) flyby?
is this legal and f i dont come up with extra money is the deal off
Reverse int within the 32-bit signed integer range: [−2^31, 2^31 − 1]
Closed-form expression for certain product
Terse Method to Swap Lowest for Highest?
Multiplicative persistence
How do I color the graph in datavisualization?
What percentage of fillings performed today are done with mercury amalgam?
Mailchimp API connection to PowerBI Error.Expresion 'list_stats' not found
campaignUpdate via mailchimp APIAlternative to google finance apiWhat is Linux’s native GUI API?Javascript + MailChimp API subscribeUpdating to mailchimp api v2.0API mailchimp : failed to connectMailChimp API Get Subscribers ammountInvalid MailChimp API Key in Mailchimp Export APIRealize Mailchimp Double-Opt-In with API 3.0Connection to MailChimp v3.0 API
I'm experiencing an issue connecting to the Mailchimp API through Power BI. I had a query that worked fine two weeks ago, but when I loaded the dashboard and updated the data this week, it crashed.
The error is the following:
PowerBI error message
My user interface is set to Spanish, but the message translates to "Error of OLE DB or ODBC: [Expression.Error] The field 'list_stats' was not found on the registry."
I have read in the Mailchimp API documentation that v1.1 to 1.3 of the API is about to be disconnected, but my query connects to the API 2.0 by default, so I guess this is not the issue.
I have tried to remove the said 'list_stats' column from the query, but then I get the error message: 'Microsoft.Mashup.Engine.Interface.ResourceAccessForbiddenException'
This is the code:
let
Origen = MailChimp.TablesV2(),
campaigns = Origen[Key="campaigns"][Data],
#"Tipo cambiado" = Table.TransformColumnTypes(campaigns,"Name", type text, "Key", type text, "Data", type any, "ItemKind", type text, "ItemName", type text, "IsLeaf", type logical),
#"Se expandió Data" = Table.ExpandTableColumn(#"Tipo cambiado", "Data", "id", "campaign_title", "type", "list_id", "list_is_active", "list_name", "subject_line", "preview_text", "emails_sent", "abuse_reports", "unsubscribed", "send_time", "bounces", "forwards", "opens", "clicks", "facebook_likes", "list_stats", "timeseries", "ecommerce", "delivery_status", "_links", "campaignId", "message", "Data.id", "Data.campaign_title", "Data.type", "Data.list_id", "Data.list_is_active", "Data.list_name", "Data.subject_line", "Data.preview_text", "Data.emails_sent", "Data.abuse_reports", "Data.unsubscribed", "Data.send_time", "Data.bounces", "Data.forwards", "Data.opens", "Data.clicks", "Data.facebook_likes", "Data.list_stats", "Data.timeseries", "Data.ecommerce", "Data.delivery_status", "Data._links", "Data.campaignId", "Data.message")
in
#"Se expandió Data"
In my original query there were more steps formatting the data, which seems to be causing the issue as far I don't get the AccessForbidden error. This is the original code of the query:
let
Origen = MailChimp.TablesV2(),
campaigns = Origen[Key="campaigns"][Data],
#"Tipo cambiado" = Table.TransformColumnTypes(campaigns,"Name", type text, "Key", type text, "Data", type any, "ItemKind", type text, "ItemName", type text, "IsLeaf", type logical),
#"Se expandió Data" = Table.ExpandTableColumn(#"Tipo cambiado", "Data", "id", "campaign_title", "type", "list_id", "list_is_active", "list_name", "subject_line", "preview_text", "emails_sent", "abuse_reports", "unsubscribed", "send_time", "bounces", "forwards", "opens", "clicks", "facebook_likes", "timeseries", "ecommerce", "delivery_status", "_links", "campaignId", "message", "Data.id", "Data.campaign_title", "Data.type", "Data.list_id", "Data.list_is_active", "Data.list_name", "Data.subject_line", "Data.preview_text", "Data.emails_sent", "Data.abuse_reports", "Data.unsubscribed", "Data.send_time", "Data.bounces", "Data.forwards", "Data.opens", "Data.clicks", "Data.facebook_likes", "Data.timeseries", "Data.ecommerce", "Data.delivery_status", "Data._links", "Data.campaignId", "Data.message"),
#"Se expandió Data.bounces" = Table.ExpandRecordColumn(#"Se expandió Data", "Data.bounces", "hard_bounces", "soft_bounces", "syntax_errors", "Data.bounces.hard_bounces", "Data.bounces.soft_bounces", "Data.bounces.syntax_errors"),
#"Se expandió Data.opens" = Table.ExpandRecordColumn(#"Se expandió Data.bounces", "Data.opens", "opens_total", "unique_opens", "open_rate", "last_open", "Data.opens.opens_total", "Data.opens.unique_opens", "Data.opens.open_rate", "Data.opens.last_open"),
#"Se expandió Data.clicks" = Table.ExpandRecordColumn(#"Se expandió Data.opens", "Data.clicks", "clicks_total", "unique_clicks", "unique_subscriber_clicks", "click_rate", "last_click", "Data.clicks.clicks_total", "Data.clicks.unique_clicks", "Data.clicks.unique_subscriber_clicks", "Data.clicks.click_rate", "Data.clicks.last_click"),
#"Tipo cambiado1" = Table.TransformColumnTypes(#"Se expandió Data.clicks","Data.emails_sent", Int64.Type, "Data.abuse_reports", Int64.Type, "Data.unsubscribed", Int64.Type, "Data.send_time", type datetime, "Data.bounces.hard_bounces", Int64.Type, "Data.bounces.soft_bounces", Int64.Type, "Data.bounces.syntax_errors", Int64.Type, "Data.opens.opens_total", Int64.Type, "Data.opens.unique_opens", Int64.Type, "Data.opens.open_rate", Percentage.Type, "Data.opens.last_open", type datetime, "Data.clicks.clicks_total", Int64.Type, "Data.clicks.unique_clicks", Int64.Type, "Data.clicks.unique_subscriber_clicks", Int64.Type, "Data.clicks.click_rate", Percentage.Type, "Data.clicks.last_click", type datetime),
#"Columnas con nombre cambiado" = Table.RenameColumns(#"Tipo cambiado1","Data.type", "type", "Data.list_id", "list_id", "Data.list_is_active", "list_is_active", "Data.list_name", "list_name", "Data.subject_line", "subject_line", "Data.preview_text", "preview_text", "Data.emails_sent", "emails_sent", "Data.abuse_reports", "abuse_reports", "Data.unsubscribed", "unsubscribed", "Data.send_time", "send_time", "Data.bounces.hard_bounces", "bounces.hard_bounces", "Data.bounces.soft_bounces", "bounces.soft_bounces", "Data.bounces.syntax_errors", "bounces.syntax_errors", "Data.opens.opens_total", "opens.opens_total", "Data.opens.unique_opens", "opens.unique_opens", "Data.opens.open_rate", "opens.open_rate", "Data.opens.last_open", "opens.last_open", "Data.clicks.clicks_total", "clicks.clicks_total", "Data.clicks.unique_clicks", "clicks.unique_clicks", "Data.clicks.unique_subscriber_clicks", "clicks.unique_subscriber_clicks", "Data.clicks.click_rate", "clicks.click_rate", "Data.clicks.last_click", "clicks.last_click")
in
#"Columnas con nombre cambiado"
Any ideas how can I get through this? Thank you.
api mailchimp powerbi-desktop
New contributor
add a comment |
I'm experiencing an issue connecting to the Mailchimp API through Power BI. I had a query that worked fine two weeks ago, but when I loaded the dashboard and updated the data this week, it crashed.
The error is the following:
PowerBI error message
My user interface is set to Spanish, but the message translates to "Error of OLE DB or ODBC: [Expression.Error] The field 'list_stats' was not found on the registry."
I have read in the Mailchimp API documentation that v1.1 to 1.3 of the API is about to be disconnected, but my query connects to the API 2.0 by default, so I guess this is not the issue.
I have tried to remove the said 'list_stats' column from the query, but then I get the error message: 'Microsoft.Mashup.Engine.Interface.ResourceAccessForbiddenException'
This is the code:
let
Origen = MailChimp.TablesV2(),
campaigns = Origen[Key="campaigns"][Data],
#"Tipo cambiado" = Table.TransformColumnTypes(campaigns,"Name", type text, "Key", type text, "Data", type any, "ItemKind", type text, "ItemName", type text, "IsLeaf", type logical),
#"Se expandió Data" = Table.ExpandTableColumn(#"Tipo cambiado", "Data", "id", "campaign_title", "type", "list_id", "list_is_active", "list_name", "subject_line", "preview_text", "emails_sent", "abuse_reports", "unsubscribed", "send_time", "bounces", "forwards", "opens", "clicks", "facebook_likes", "list_stats", "timeseries", "ecommerce", "delivery_status", "_links", "campaignId", "message", "Data.id", "Data.campaign_title", "Data.type", "Data.list_id", "Data.list_is_active", "Data.list_name", "Data.subject_line", "Data.preview_text", "Data.emails_sent", "Data.abuse_reports", "Data.unsubscribed", "Data.send_time", "Data.bounces", "Data.forwards", "Data.opens", "Data.clicks", "Data.facebook_likes", "Data.list_stats", "Data.timeseries", "Data.ecommerce", "Data.delivery_status", "Data._links", "Data.campaignId", "Data.message")
in
#"Se expandió Data"
In my original query there were more steps formatting the data, which seems to be causing the issue as far I don't get the AccessForbidden error. This is the original code of the query:
let
Origen = MailChimp.TablesV2(),
campaigns = Origen[Key="campaigns"][Data],
#"Tipo cambiado" = Table.TransformColumnTypes(campaigns,"Name", type text, "Key", type text, "Data", type any, "ItemKind", type text, "ItemName", type text, "IsLeaf", type logical),
#"Se expandió Data" = Table.ExpandTableColumn(#"Tipo cambiado", "Data", "id", "campaign_title", "type", "list_id", "list_is_active", "list_name", "subject_line", "preview_text", "emails_sent", "abuse_reports", "unsubscribed", "send_time", "bounces", "forwards", "opens", "clicks", "facebook_likes", "timeseries", "ecommerce", "delivery_status", "_links", "campaignId", "message", "Data.id", "Data.campaign_title", "Data.type", "Data.list_id", "Data.list_is_active", "Data.list_name", "Data.subject_line", "Data.preview_text", "Data.emails_sent", "Data.abuse_reports", "Data.unsubscribed", "Data.send_time", "Data.bounces", "Data.forwards", "Data.opens", "Data.clicks", "Data.facebook_likes", "Data.timeseries", "Data.ecommerce", "Data.delivery_status", "Data._links", "Data.campaignId", "Data.message"),
#"Se expandió Data.bounces" = Table.ExpandRecordColumn(#"Se expandió Data", "Data.bounces", "hard_bounces", "soft_bounces", "syntax_errors", "Data.bounces.hard_bounces", "Data.bounces.soft_bounces", "Data.bounces.syntax_errors"),
#"Se expandió Data.opens" = Table.ExpandRecordColumn(#"Se expandió Data.bounces", "Data.opens", "opens_total", "unique_opens", "open_rate", "last_open", "Data.opens.opens_total", "Data.opens.unique_opens", "Data.opens.open_rate", "Data.opens.last_open"),
#"Se expandió Data.clicks" = Table.ExpandRecordColumn(#"Se expandió Data.opens", "Data.clicks", "clicks_total", "unique_clicks", "unique_subscriber_clicks", "click_rate", "last_click", "Data.clicks.clicks_total", "Data.clicks.unique_clicks", "Data.clicks.unique_subscriber_clicks", "Data.clicks.click_rate", "Data.clicks.last_click"),
#"Tipo cambiado1" = Table.TransformColumnTypes(#"Se expandió Data.clicks","Data.emails_sent", Int64.Type, "Data.abuse_reports", Int64.Type, "Data.unsubscribed", Int64.Type, "Data.send_time", type datetime, "Data.bounces.hard_bounces", Int64.Type, "Data.bounces.soft_bounces", Int64.Type, "Data.bounces.syntax_errors", Int64.Type, "Data.opens.opens_total", Int64.Type, "Data.opens.unique_opens", Int64.Type, "Data.opens.open_rate", Percentage.Type, "Data.opens.last_open", type datetime, "Data.clicks.clicks_total", Int64.Type, "Data.clicks.unique_clicks", Int64.Type, "Data.clicks.unique_subscriber_clicks", Int64.Type, "Data.clicks.click_rate", Percentage.Type, "Data.clicks.last_click", type datetime),
#"Columnas con nombre cambiado" = Table.RenameColumns(#"Tipo cambiado1","Data.type", "type", "Data.list_id", "list_id", "Data.list_is_active", "list_is_active", "Data.list_name", "list_name", "Data.subject_line", "subject_line", "Data.preview_text", "preview_text", "Data.emails_sent", "emails_sent", "Data.abuse_reports", "abuse_reports", "Data.unsubscribed", "unsubscribed", "Data.send_time", "send_time", "Data.bounces.hard_bounces", "bounces.hard_bounces", "Data.bounces.soft_bounces", "bounces.soft_bounces", "Data.bounces.syntax_errors", "bounces.syntax_errors", "Data.opens.opens_total", "opens.opens_total", "Data.opens.unique_opens", "opens.unique_opens", "Data.opens.open_rate", "opens.open_rate", "Data.opens.last_open", "opens.last_open", "Data.clicks.clicks_total", "clicks.clicks_total", "Data.clicks.unique_clicks", "clicks.unique_clicks", "Data.clicks.unique_subscriber_clicks", "clicks.unique_subscriber_clicks", "Data.clicks.click_rate", "clicks.click_rate", "Data.clicks.last_click", "clicks.last_click")
in
#"Columnas con nombre cambiado"
Any ideas how can I get through this? Thank you.
api mailchimp powerbi-desktop
New contributor
add a comment |
I'm experiencing an issue connecting to the Mailchimp API through Power BI. I had a query that worked fine two weeks ago, but when I loaded the dashboard and updated the data this week, it crashed.
The error is the following:
PowerBI error message
My user interface is set to Spanish, but the message translates to "Error of OLE DB or ODBC: [Expression.Error] The field 'list_stats' was not found on the registry."
I have read in the Mailchimp API documentation that v1.1 to 1.3 of the API is about to be disconnected, but my query connects to the API 2.0 by default, so I guess this is not the issue.
I have tried to remove the said 'list_stats' column from the query, but then I get the error message: 'Microsoft.Mashup.Engine.Interface.ResourceAccessForbiddenException'
This is the code:
let
Origen = MailChimp.TablesV2(),
campaigns = Origen[Key="campaigns"][Data],
#"Tipo cambiado" = Table.TransformColumnTypes(campaigns,"Name", type text, "Key", type text, "Data", type any, "ItemKind", type text, "ItemName", type text, "IsLeaf", type logical),
#"Se expandió Data" = Table.ExpandTableColumn(#"Tipo cambiado", "Data", "id", "campaign_title", "type", "list_id", "list_is_active", "list_name", "subject_line", "preview_text", "emails_sent", "abuse_reports", "unsubscribed", "send_time", "bounces", "forwards", "opens", "clicks", "facebook_likes", "list_stats", "timeseries", "ecommerce", "delivery_status", "_links", "campaignId", "message", "Data.id", "Data.campaign_title", "Data.type", "Data.list_id", "Data.list_is_active", "Data.list_name", "Data.subject_line", "Data.preview_text", "Data.emails_sent", "Data.abuse_reports", "Data.unsubscribed", "Data.send_time", "Data.bounces", "Data.forwards", "Data.opens", "Data.clicks", "Data.facebook_likes", "Data.list_stats", "Data.timeseries", "Data.ecommerce", "Data.delivery_status", "Data._links", "Data.campaignId", "Data.message")
in
#"Se expandió Data"
In my original query there were more steps formatting the data, which seems to be causing the issue as far I don't get the AccessForbidden error. This is the original code of the query:
let
Origen = MailChimp.TablesV2(),
campaigns = Origen[Key="campaigns"][Data],
#"Tipo cambiado" = Table.TransformColumnTypes(campaigns,"Name", type text, "Key", type text, "Data", type any, "ItemKind", type text, "ItemName", type text, "IsLeaf", type logical),
#"Se expandió Data" = Table.ExpandTableColumn(#"Tipo cambiado", "Data", "id", "campaign_title", "type", "list_id", "list_is_active", "list_name", "subject_line", "preview_text", "emails_sent", "abuse_reports", "unsubscribed", "send_time", "bounces", "forwards", "opens", "clicks", "facebook_likes", "timeseries", "ecommerce", "delivery_status", "_links", "campaignId", "message", "Data.id", "Data.campaign_title", "Data.type", "Data.list_id", "Data.list_is_active", "Data.list_name", "Data.subject_line", "Data.preview_text", "Data.emails_sent", "Data.abuse_reports", "Data.unsubscribed", "Data.send_time", "Data.bounces", "Data.forwards", "Data.opens", "Data.clicks", "Data.facebook_likes", "Data.timeseries", "Data.ecommerce", "Data.delivery_status", "Data._links", "Data.campaignId", "Data.message"),
#"Se expandió Data.bounces" = Table.ExpandRecordColumn(#"Se expandió Data", "Data.bounces", "hard_bounces", "soft_bounces", "syntax_errors", "Data.bounces.hard_bounces", "Data.bounces.soft_bounces", "Data.bounces.syntax_errors"),
#"Se expandió Data.opens" = Table.ExpandRecordColumn(#"Se expandió Data.bounces", "Data.opens", "opens_total", "unique_opens", "open_rate", "last_open", "Data.opens.opens_total", "Data.opens.unique_opens", "Data.opens.open_rate", "Data.opens.last_open"),
#"Se expandió Data.clicks" = Table.ExpandRecordColumn(#"Se expandió Data.opens", "Data.clicks", "clicks_total", "unique_clicks", "unique_subscriber_clicks", "click_rate", "last_click", "Data.clicks.clicks_total", "Data.clicks.unique_clicks", "Data.clicks.unique_subscriber_clicks", "Data.clicks.click_rate", "Data.clicks.last_click"),
#"Tipo cambiado1" = Table.TransformColumnTypes(#"Se expandió Data.clicks","Data.emails_sent", Int64.Type, "Data.abuse_reports", Int64.Type, "Data.unsubscribed", Int64.Type, "Data.send_time", type datetime, "Data.bounces.hard_bounces", Int64.Type, "Data.bounces.soft_bounces", Int64.Type, "Data.bounces.syntax_errors", Int64.Type, "Data.opens.opens_total", Int64.Type, "Data.opens.unique_opens", Int64.Type, "Data.opens.open_rate", Percentage.Type, "Data.opens.last_open", type datetime, "Data.clicks.clicks_total", Int64.Type, "Data.clicks.unique_clicks", Int64.Type, "Data.clicks.unique_subscriber_clicks", Int64.Type, "Data.clicks.click_rate", Percentage.Type, "Data.clicks.last_click", type datetime),
#"Columnas con nombre cambiado" = Table.RenameColumns(#"Tipo cambiado1","Data.type", "type", "Data.list_id", "list_id", "Data.list_is_active", "list_is_active", "Data.list_name", "list_name", "Data.subject_line", "subject_line", "Data.preview_text", "preview_text", "Data.emails_sent", "emails_sent", "Data.abuse_reports", "abuse_reports", "Data.unsubscribed", "unsubscribed", "Data.send_time", "send_time", "Data.bounces.hard_bounces", "bounces.hard_bounces", "Data.bounces.soft_bounces", "bounces.soft_bounces", "Data.bounces.syntax_errors", "bounces.syntax_errors", "Data.opens.opens_total", "opens.opens_total", "Data.opens.unique_opens", "opens.unique_opens", "Data.opens.open_rate", "opens.open_rate", "Data.opens.last_open", "opens.last_open", "Data.clicks.clicks_total", "clicks.clicks_total", "Data.clicks.unique_clicks", "clicks.unique_clicks", "Data.clicks.unique_subscriber_clicks", "clicks.unique_subscriber_clicks", "Data.clicks.click_rate", "clicks.click_rate", "Data.clicks.last_click", "clicks.last_click")
in
#"Columnas con nombre cambiado"
Any ideas how can I get through this? Thank you.
api mailchimp powerbi-desktop
New contributor
I'm experiencing an issue connecting to the Mailchimp API through Power BI. I had a query that worked fine two weeks ago, but when I loaded the dashboard and updated the data this week, it crashed.
The error is the following:
PowerBI error message
My user interface is set to Spanish, but the message translates to "Error of OLE DB or ODBC: [Expression.Error] The field 'list_stats' was not found on the registry."
I have read in the Mailchimp API documentation that v1.1 to 1.3 of the API is about to be disconnected, but my query connects to the API 2.0 by default, so I guess this is not the issue.
I have tried to remove the said 'list_stats' column from the query, but then I get the error message: 'Microsoft.Mashup.Engine.Interface.ResourceAccessForbiddenException'
This is the code:
let
Origen = MailChimp.TablesV2(),
campaigns = Origen[Key="campaigns"][Data],
#"Tipo cambiado" = Table.TransformColumnTypes(campaigns,"Name", type text, "Key", type text, "Data", type any, "ItemKind", type text, "ItemName", type text, "IsLeaf", type logical),
#"Se expandió Data" = Table.ExpandTableColumn(#"Tipo cambiado", "Data", "id", "campaign_title", "type", "list_id", "list_is_active", "list_name", "subject_line", "preview_text", "emails_sent", "abuse_reports", "unsubscribed", "send_time", "bounces", "forwards", "opens", "clicks", "facebook_likes", "list_stats", "timeseries", "ecommerce", "delivery_status", "_links", "campaignId", "message", "Data.id", "Data.campaign_title", "Data.type", "Data.list_id", "Data.list_is_active", "Data.list_name", "Data.subject_line", "Data.preview_text", "Data.emails_sent", "Data.abuse_reports", "Data.unsubscribed", "Data.send_time", "Data.bounces", "Data.forwards", "Data.opens", "Data.clicks", "Data.facebook_likes", "Data.list_stats", "Data.timeseries", "Data.ecommerce", "Data.delivery_status", "Data._links", "Data.campaignId", "Data.message")
in
#"Se expandió Data"
In my original query there were more steps formatting the data, which seems to be causing the issue as far I don't get the AccessForbidden error. This is the original code of the query:
let
Origen = MailChimp.TablesV2(),
campaigns = Origen[Key="campaigns"][Data],
#"Tipo cambiado" = Table.TransformColumnTypes(campaigns,"Name", type text, "Key", type text, "Data", type any, "ItemKind", type text, "ItemName", type text, "IsLeaf", type logical),
#"Se expandió Data" = Table.ExpandTableColumn(#"Tipo cambiado", "Data", "id", "campaign_title", "type", "list_id", "list_is_active", "list_name", "subject_line", "preview_text", "emails_sent", "abuse_reports", "unsubscribed", "send_time", "bounces", "forwards", "opens", "clicks", "facebook_likes", "timeseries", "ecommerce", "delivery_status", "_links", "campaignId", "message", "Data.id", "Data.campaign_title", "Data.type", "Data.list_id", "Data.list_is_active", "Data.list_name", "Data.subject_line", "Data.preview_text", "Data.emails_sent", "Data.abuse_reports", "Data.unsubscribed", "Data.send_time", "Data.bounces", "Data.forwards", "Data.opens", "Data.clicks", "Data.facebook_likes", "Data.timeseries", "Data.ecommerce", "Data.delivery_status", "Data._links", "Data.campaignId", "Data.message"),
#"Se expandió Data.bounces" = Table.ExpandRecordColumn(#"Se expandió Data", "Data.bounces", "hard_bounces", "soft_bounces", "syntax_errors", "Data.bounces.hard_bounces", "Data.bounces.soft_bounces", "Data.bounces.syntax_errors"),
#"Se expandió Data.opens" = Table.ExpandRecordColumn(#"Se expandió Data.bounces", "Data.opens", "opens_total", "unique_opens", "open_rate", "last_open", "Data.opens.opens_total", "Data.opens.unique_opens", "Data.opens.open_rate", "Data.opens.last_open"),
#"Se expandió Data.clicks" = Table.ExpandRecordColumn(#"Se expandió Data.opens", "Data.clicks", "clicks_total", "unique_clicks", "unique_subscriber_clicks", "click_rate", "last_click", "Data.clicks.clicks_total", "Data.clicks.unique_clicks", "Data.clicks.unique_subscriber_clicks", "Data.clicks.click_rate", "Data.clicks.last_click"),
#"Tipo cambiado1" = Table.TransformColumnTypes(#"Se expandió Data.clicks","Data.emails_sent", Int64.Type, "Data.abuse_reports", Int64.Type, "Data.unsubscribed", Int64.Type, "Data.send_time", type datetime, "Data.bounces.hard_bounces", Int64.Type, "Data.bounces.soft_bounces", Int64.Type, "Data.bounces.syntax_errors", Int64.Type, "Data.opens.opens_total", Int64.Type, "Data.opens.unique_opens", Int64.Type, "Data.opens.open_rate", Percentage.Type, "Data.opens.last_open", type datetime, "Data.clicks.clicks_total", Int64.Type, "Data.clicks.unique_clicks", Int64.Type, "Data.clicks.unique_subscriber_clicks", Int64.Type, "Data.clicks.click_rate", Percentage.Type, "Data.clicks.last_click", type datetime),
#"Columnas con nombre cambiado" = Table.RenameColumns(#"Tipo cambiado1","Data.type", "type", "Data.list_id", "list_id", "Data.list_is_active", "list_is_active", "Data.list_name", "list_name", "Data.subject_line", "subject_line", "Data.preview_text", "preview_text", "Data.emails_sent", "emails_sent", "Data.abuse_reports", "abuse_reports", "Data.unsubscribed", "unsubscribed", "Data.send_time", "send_time", "Data.bounces.hard_bounces", "bounces.hard_bounces", "Data.bounces.soft_bounces", "bounces.soft_bounces", "Data.bounces.syntax_errors", "bounces.syntax_errors", "Data.opens.opens_total", "opens.opens_total", "Data.opens.unique_opens", "opens.unique_opens", "Data.opens.open_rate", "opens.open_rate", "Data.opens.last_open", "opens.last_open", "Data.clicks.clicks_total", "clicks.clicks_total", "Data.clicks.unique_clicks", "clicks.unique_clicks", "Data.clicks.unique_subscriber_clicks", "clicks.unique_subscriber_clicks", "Data.clicks.click_rate", "clicks.click_rate", "Data.clicks.last_click", "clicks.last_click")
in
#"Columnas con nombre cambiado"
Any ideas how can I get through this? Thank you.
api mailchimp powerbi-desktop
api mailchimp powerbi-desktop
New contributor
New contributor
New contributor
asked 2 days ago
P.VazP.Vaz
11
11
New contributor
New contributor
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
P.Vaz is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55281197%2fmailchimp-api-connection-to-powerbi-error-expresion-list-stats-not-found%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
P.Vaz is a new contributor. Be nice, and check out our Code of Conduct.
P.Vaz is a new contributor. Be nice, and check out our Code of Conduct.
P.Vaz is a new contributor. Be nice, and check out our Code of Conduct.
P.Vaz is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55281197%2fmailchimp-api-connection-to-powerbi-error-expresion-list-stats-not-found%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown