March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi,
I need to create a measure to Parent name using id=parentid join.
Table
id | Name | Parent_id |
101 | A | |
102 | B | 101 |
103 | C | 101 |
104 | D | 103 |
105 | E | 103 |
Create a Measure "Parent Name".
id | Name | Parent Name |
101 | A | |
102 | B | A |
103 | C | A |
104 | D | C |
105 | E | C |
Can't modify the Dataset due to company policy.
Is there a way to calculate the measure?
Solved! Go to Solution.
Ahh, I had done mine as a measure. Because you said you couldn't modify the data set I thought you couldn't add a column. I have updated the calculated column to work and also added in the measure in the attached file.
Hello @Anonymous
Give this a try.
Parent Name = VAR RowParent = SELECTEDVALUE ( 'Your Table'[Parent_id] ) RETURN IF ( ISBLANK ( RowParent ), "n/a", LOOKUPVALUE ( 'Your Table'[Name], 'Your Table'[id], RowParent ) )
Strange. I tried your solution, why mine is showing n/a?
In your table, is ID a number and Parent ID text?
oops, I am not the one who posted. I gaveit a try because I want to learn.
And you did not fail me, I really did learn something new from you today.
Thank you @jdbuchanan71 ! You are awesome!!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
86 | |
76 | |
57 | |
52 |
User | Count |
---|---|
201 | |
137 | |
108 | |
73 | |
68 |