Forum Discussion

creedyp's avatar
creedyp
Regular Visitor
2 years ago
Solved

PowerBI and ZenDesk connector (beta)

I've just started to look at the new connector for PowerBI into Zendesk.   I have an issue with certain fields such as custom fields, which come back as [List].  There does appear to be a way of na...
  • creedyp's avatar
    2 years ago

    Answering my own question for others that may find this thread.

    You can go into the Transform screen in PowerBi and add a new column.

    The formular is:

     

    = Table.AddColumn(Tickets1, "Category", each Record.Field([custom_fields]{3},"value"))

     

    Where "Category" is the name of the column, and {3} is the index of the custom field you want to extract, which will be different depending on what field you want.