I have a table with customers (customerID is primary key)
I have a table with users (userID is pirmary key)
In table customers i have a column called customerManager.
This column have userID´s (primary key from table called users).
I want a business rule that do this:
If column customerManger contains data
Then lookup that value in the user table (column userID) and set the value Name to a new column in customers called customerManagerName
Is this possible?
Or is the only way to do this with a power automate flow that runs often loop through all records and populate the name of the manager in the column?