ItemId = Products[@ItemId]
select * from table a
If you know a better way to join 3 tables together in a specific order (table 1, table 2, table 3) so table 1 is the main table and table 2 joins to table 1, then table 3 joins to table 2.
ClearCollect(
Info,
AddColumns(
Filter(Products, ItemId = 6789),
"ProductDetails",
LookUp(
DeliverySchedule,
ItemId = Products[@ItemId],
"columnName"
), "ThirdColumnName",
LookUp(ThirdTable, filterColumn = 6789, "columnName")
)
)
ItemId
exists in both ProductDetails
and DeliverySchedule
tables, try this formula
WarrenBelz
146,679
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
66,015
Most Valuable Professional