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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello everyone,
I want to get product names related to the same IDs between tables createing a measure or calculated column on the TableA and display them on a slicer.
TableA:
Date | IDa | ProductName |
2021/6/1 | 1 | book |
2021/6/2 | 2 | note |
2021/6/3 | 3 | pen |
TableB:
Date | IDb | KW |
2021/6/4 | 4 | 123565 |
2021/6/5 | 2 | 467234 |
2021/6/6 | 5 | 3423 |
The relationship between the tables is IDa (many) to IDb (one).
I try a measure and calculated column to do this, but I can't get correct values due to error.
Any idea, please?
Thanks,
Vladi
Solved! Go to Solution.
@PbiCeo
You can add a Calculated Column in Table B with the following formula:
Name = RELATED( TableA[Product name] )
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@PbiCeo
You can add a Calculated Column in Table B with the following formula:
Name = RELATED( TableA[Product name] )
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group