Hey @VINAY_B_C, here’s the formula:
You have to find a row in the Assignee Details table that corresponds to the current email:
[Assignee Details].Filter(
[Assignee Mail] = thisRow.[Assignee Email]
).First()
(use .First() to limit to one result and avoid getting a list-of-one)
and then read the .Team
column out of that record.