Forum Discussion
hugomatos
1 year agoNew Member
Creating new column based on value from another table
Hi everyone, I have 2 tables and I need to create a column on the second based on values from the first. Some ideia? table1 START CODE END CODE INFO 7100000 72000...
Jihwan_Kim
Super User
1 year agoHi,
Please check the below picture and the attached pbix file.
expected result CC =
SUMMARIZE (
FILTER (
Table1,
Table1[START CODE] <= Table2[ID]
&& Table1[END CODE] >= Table2[ID]
),
Table1[INFO]
)