Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have below two tables with no existing relationships.
1) LoanTable
Loan Type
Emp ID
Total Outstanding Amount
2) LoanReferenceTable
Loan Type
Interest %
Now I need to create a calcuated column in LoanTable which multiplies Total Outstanding Amount with Interest % matching the Loan Type.
Please help.
Solved! Go to Solution.
Hi @Anonymous ,
Create a column similarly as below:
Column =
var _lookupvalue=LOOKUPVALUE(LoanReferenceTable[Interest %],'LoanReferenceTable'[Loan Type],'LoanTable'[Loan Type],0)
Return
_lookupvalue*'LoanTable'[Total Outstanding Amount]
And you will see:
For the related .pbix file,pls see attahced.
Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!
Hi @Anonymous ,
Create a column similarly as below:
Column =
var _lookupvalue=LOOKUPVALUE(LoanReferenceTable[Interest %],'LoanReferenceTable'[Loan Type],'LoanTable'[Loan Type],0)
Return
_lookupvalue*'LoanTable'[Total Outstanding Amount]
And you will see:
For the related .pbix file,pls see attahced.
Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!
@Anonymous , if they are connected 1- M
new column in LoanTable
related(LoanReferenceTable[Interest %])
M- 1
maxx(realtedtable(LoanReferenceTable), [Interest %])
no relation
maxx(filter(LoanReferenceTable,LoanReferenceTable[Loan Type] = LoanTable [Loan Type] ), [Interest %])
refer 4 ways to copy data from one table to another
https://www.youtube.com/watch?v=Wu1mWxR23jU
https://www.youtube.com/watch?v=czNHt7UXIe8
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!
| User | Count |
|---|---|
| 97 | |
| 70 | |
| 50 | |
| 42 | |
| 40 |