- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
vso identity fields converted to weird text strings
Hi there!
I'm using the OData connector to pull VSO work item data into Power BI.
Unfortunately, for some reason the contents of the "Identity" fields (e.g. Assigned to) are being converted to long alphanumeric strings.
Here is how the data appears in VSO
Here is how that data appears in Power BI.
I'm sure it's user error. Anyone know what my error might be?
Thank you!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you!
Unfortunately I had several fields that all needed this matching so I've created columns using the LOOKUPVALUE function. Works like a charm!
Assigned To = LOOKUPVALUE(Users[UserName],Users[UserSK],WorkItems[AssignedToUserSK])
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I wonder if that is a user unique id and you need to pull in another table to relate the user information to that unique id.
Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!: Power BI Cookbook Third Edition (Color)
DAX is easy, CALCULATE makes DAX hard...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Yes!
I found the "Users" table and have brought it in.
I think the next thing to do is create calculated columns in my original table which contain the related value.
Example:
Assigned to = (RELATED('Users'[UserName]))
Is there a better way?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@Catalizt wrote:
Yes!
I found the "Users" table and have brought it in.
I think the next thing to do is create calculated columns in my original table which contain the related value.
Example:
Assigned to = (RELATED('Users'[UserName]))
Is there a better way?
So I think the assignment table and user tables has a proper many:one relationship.
Besides creating a calculated column, you can do nothing. Then in a chart, like table chart, drag some fields from assignment table and also the name from user table, the relationship would find the related username.
Or you can create some measure just like
Measure = CALCULATE ( SUM ( assigment[value] ), FILTER ( assigment, RELATED ( user[username] ) = "name1" ) )
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you!
Unfortunately I had several fields that all needed this matching so I've created columns using the LOOKUPVALUE function. Works like a charm!
Assigned To = LOOKUPVALUE(Users[UserName],Users[UserSK],WorkItems[AssignedToUserSK])

Helpful resources
Join us at the Microsoft Fabric Community Conference
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Power BI Monthly Update - February 2025
Check out the February 2025 Power BI update to learn about new features.

Subject | Author | Posted | |
---|---|---|---|
11-22-2024 08:15 AM | |||
01-22-2025 01:48 AM | |||
01-08-2025 04:55 AM | |||
12-26-2024 07:13 AM | |||
01-04-2023 08:28 PM |
User | Count |
---|---|
83 | |
80 | |
47 | |
37 | |
36 |