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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello,
I have a table A like this
| ID | Field0 | Field1 | FIeld2 | Field 3 |
| 1 | tt | 1 | 1 | 1 |
| 2 | xx | 2 | 2 | 2 |
| 3 | cc | 1 | 2 | 1 |
| 4 | dd | 2 | 2 | 1 |
| 5 | yy | 1 | 1 | 1 |
| 6 | aa | 1 | 1 | 1 |
Table B as :
| ID | Desc |
| 1 | YES |
| 2 | NO |
In Power BI how can i do to have a result like this :
| ID | Field0 | Field1 | FIeld2 | Field 3 |
| 1 | tt | YES | YES | YES |
| 2 | xx | NO | NO | NO |
| 3 | cc | YES | NO | YES |
| 4 | dd | NO | NO | YES |
| 5 | yy | YES | YES | YES |
| 6 | aa | YES | YES | YES |
I cannot make multiple relation
Thank for help
Solved! Go to Solution.
Hi @calou_33,
You could have a try with the formulas below.
Column1 = LOOKUPVALUE('TableB'[Desc],TableB[ID],'TableA'[Field1])
Column2 = LOOKUPVALUE('TableB'[Desc],TableB[ID],'TableA'[FIeld2])
Column3 = LOOKUPVALUE('TableB'[Desc],TableB[ID],'TableA'[Field 3])
Here is the result.
Hope this can help you!
Best Regards,
Cherry
Hi @calou_33,
You could have a try with the formulas below.
Column1 = LOOKUPVALUE('TableB'[Desc],TableB[ID],'TableA'[Field1])
Column2 = LOOKUPVALUE('TableB'[Desc],TableB[ID],'TableA'[FIeld2])
Column3 = LOOKUPVALUE('TableB'[Desc],TableB[ID],'TableA'[Field 3])
Here is the result.
Hope this can help you!
Best Regards,
Cherry
Replace your Field1,2,3 columns with the below formulas.
Filed1_New = IF(TableA[Filed1]=RELATED(TableB[ID]), RELATED(TableB[Desc]))
Filed2_New = IF(TableA[Filed2]=RELATED(TableB[ID]), RELATED(TableB[Desc]))
Filed3_New = IF(TableA[Filed3]=RELATED(TableB[ID]), RELATED(TableB[Desc]))
Thanks
Raj
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 59 | |
| 42 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 108 | |
| 100 | |
| 39 | |
| 29 | |
| 29 |