The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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]
)
)