Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi All,
Im having dificukties with this one:
- Table A = Has unique number of GUIDs im tracking
- Table B =
What i want to achieve is how to track only selected GUIDs from Table A in Table B for both User & EndUser.
What i was thinkning is:
Creating a calculated column or measure that does the following:
If ( TableA[GUID] = TableB[User GUID] and_or TableB[End User GUID]; Display found GUID; Display nothing)
The point is to display a new custom column with GUID found in above operation.
Any ideas how i can code somthing like this in Query editor?
Thanks for any help
Solved! Go to Solution.
Hi @Anonymous ,
"What i want to achieve is how to track only selected GUIDs from Table A in Table B for both User & EndUser. "
"The point is to display a new custom column with GUID found in above operation. "
Maybe you can try this measure:
Measure =
IF(
SELECTEDVALUE('Table A'[ GUIDs ]) = MAX('Table B'[User GUID]) || SELECTEDVALUE('Table A'[ GUIDs ]) = MAX('Table B'[ End User GUID]),
MAX('Table A'[ GUIDs ]),
BLANK()
)
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
"What i want to achieve is how to track only selected GUIDs from Table A in Table B for both User & EndUser. "
"The point is to display a new custom column with GUID found in above operation. "
Maybe you can try this measure:
Measure =
IF(
SELECTEDVALUE('Table A'[ GUIDs ]) = MAX('Table B'[User GUID]) || SELECTEDVALUE('Table A'[ GUIDs ]) = MAX('Table B'[ End User GUID]),
MAX('Table A'[ GUIDs ]),
BLANK()
)
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!