Initial value from other table, based on email

i have table Group and Employee, that have entities as shown image below
2X_4_427e25f3cf6a9c248dcf4d3837ff00f436dab17c.png
i set email value both in Group and Employee table with [email]=USEREMAIL(),
and the Group[manager name] column type is Ref, from Employee[manager name] table, as dropdown

what if everytime we input new Group data, Group[manager name] have Employee[manager name] as initial value based on email, can someone give me a clue pleaseeโ€ฆ

Solved Solved
0 4 452
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4

Set the Initial value property of the manager name column of the Group table to this expression:

LOOKUP(
  USEREMAIL(),
  "Employee",
  "email",
  "manager name"
)

Read more:

View solution in original post

4 REPLIES 4
Top Labels in this Space