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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
Thanks for looking at my post.
I have two non related table. Is there any way to do the following pleasE?
thanks a lot
Solved! Go to Solution.
Hi, Please check the below picture and the attached pbix file.
It is for creating a new table.
expected result table =
ADDCOLUMNS (
Table01,
"Status",
MAXX (
FILTER (
Table02,
Table02[Order number] = EARLIER ( Table01[Order number] )
&& Table02[Material] = EARLIER ( Table01[Material] )
&& Table02[Operation] = EARLIER ( Table01[Operation] )
),
Table02[Status]
)
)
Perfect. Much appreciated and thanks a lot
Hi, Please check the below picture and the attached pbix file.
It is for creating a new table.
expected result table =
ADDCOLUMNS (
Table01,
"Status",
MAXX (
FILTER (
Table02,
Table02[Order number] = EARLIER ( Table01[Order number] )
&& Table02[Material] = EARLIER ( Table01[Material] )
&& Table02[Operation] = EARLIER ( Table01[Operation] )
),
Table02[Status]
)
)