To use Power Query M language with the new Zendesk Power BI Connector, you need to adjust the initialization of the Source. The new connector usesZendeskData.Contents()
instead ofZendesk.Tables()
.
For example, the new query initialization would look like this:
let Source = ZendeskData.Contents("https://yoursubdomain.zendesk.com", []), Users = Source{[Name="Users"]}[Data] in Users
This change is necessary to ensure your queries work properly with the new connector. If you have existing queries, simply update the Source initialization part.
The Power BI Connector by Zendesk allows you to import your Zendesk data into Power BI for interactive insights. It is a tool that helps you turn your unrelated sources of data into meaningful visualizations and reports. The new Zendesk Data (Beta)…
Signing in to the new Zendesk Power BI Connector is the same as the legacy connector. Once signed in, you will have access to all existing endpoints available in the new connector. This seamless sign-in process ensures that you can easily…
If you can't see the new Zendesk Power BI Connector in Power BI Desktop, it might be because it was included in Microsoft's April release. Ensure you have downloaded the latest Power BI Desktop version from Microsoft, specifically the April 2024…
To limit the data imported by the Zendesk Power BI Connector, you can use the Power Query M language to specify the data range or criteria you need. For instance, if you want to import only the last 7 days of tickets, you can adjust your query to…
The Zendesk Power BI Connector might not retrieve all your tickets because it uses the tickets API, which doesn't include archived tickets. This means the number of tickets you see in Power BI might be less than the total count from the Zendesk…
If you encounter authentication issues with the Zendesk Power BI Connector, especially when publishing to the Power BI service, it might be due to OAuth token errors. Ensure that your credentials are updated manually and retry the connection. If…
If you can't find brand-related information in Power BI from Zendesk, ensure you are looking for thebrand_id
field, which indicates the brand associated with a ticket. If thebrand_id
is not visible, double-check your data set and query…