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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I have the table1
and the table2
I would like to make a division between the column "Valor" of table2 by the column "suficiente" only if the values of the columns "Atributo" of table2 and "elementos" of table 1 are equal.
here is an example of what i expect as a result:
Solved! Go to Solution.
hi @gelsonwj
Not sure if i fully get your poit. you may try to add a calculated column in Table2 like:
Column =
VAR _value =
LOOKUPVALUE(
Table1[suficiente],
Table1[elementos],
Table2[Atributo]
)
RETURN
DIVIDE([Valor], _value)
it worked like:
hi @gelsonwj
Not sure if i fully get your poit. you may try to add a calculated column in Table2 like:
Column =
VAR _value =
LOOKUPVALUE(
Table1[suficiente],
Table1[elementos],
Table2[Atributo]
)
RETURN
DIVIDE([Valor], _value)
it worked like:
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
12 | |
11 | |
9 | |
8 | |
8 |