Forum Discussion
OData.Feed Include Annotations from CRM
Hi Maggie
Sorry for the dealy, I got side tracked with another project at work. In the CRM what I see is the label, so on an Account I might see the Activity as "Operations - Mixed" or "Consultant - General" etc which is what I want. But when I import that column into Power BI what I see are numbers that represent the stored Option Set value. e.g. when I import the column from CRM what it gives me is the stored value of possible option set:
| 100000001 |
| 100000002 |
| 100000003 |
| 100000004 |
| 100000005 |
| 100000007 |
| 100000008 |
| 100000009 |
| 100000010 |
| 100000011 |
| 100000013 |
| 100000014 |
So on a given entry I will receive in Power BI the number 100000013, but what I want is the label "Consultant - General" that it attached to that number set value.
As a quick & dirty way, I could just write some DAX to either replace values or Text.Contains and say if 100000013 then return "Consultant - General" but if the label ever changed I would have to manually update the code, so wanted to avoid this.
Thanks
Anonymous
Were you ever able to get your labels to dynamically import without DAX to replace the values?