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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi Folks,
I'd like to import data from a table to another.
Got a table with components and related flavors
And another one with flavors and related points
Using Dax, I'd like to import the points to a new column either in the first table, either in a new table merging both.
To get this :
I'd like to sum the number of point based on the components list.
Could you please help me ?
I thank you in advance.
Solved! Go to Solution.
hi @Jay20024 ,
there are multiple ways to do so, like addiing a calculated column in table1 with such code:
column =
LOOKUPVALUE(
Table2[Point],
Table2[Flavor],
Table1[Flavor]
)
if the tables are connected, it can be even simpler.
hi @Jay20024 ,
there are multiple ways to do so, like addiing a calculated column in table1 with such code:
column =
LOOKUPVALUE(
Table2[Point],
Table2[Flavor],
Table1[Flavor]
)
if the tables are connected, it can be even simpler.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 14 | |
| 7 | |
| 4 | |
| 4 | |
| 3 |
| User | Count |
|---|---|
| 23 | |
| 10 | |
| 10 | |
| 6 | |
| 5 |