Hi @Anonymous ,
The Items of a gallery would be something like this (note you would not need the top statement if you had different names for the common field)
With(
{
wVendors:
RenameColumns(
List2,
"vendorname",
"vendor"
)
},
AddColumns(
List1,
"Address",
LookUp(
wVendors,
vendor = vendorname
).Address,
"ContactNo"
LookUp(
wVendors,
vendor = vendorname
).'Contact#'
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.