I have two tables, first table named as Users with Name and Email Columns with data already present in it. Another Table named as Entry with Name of the Persons and Email Columns with no data present in it. Entry Table Name of the Person Column has same data that is present in Users Table Name Column, but as Enum List. So, usually some one opens Entry Form and select Name of the Person column values and in the Email Column valid if I have placed this formula, SELECT(Users[Email],IN([Name], [_THISROW].[Name of the Person])), so that the Name of the Person column, selected values will get an Email by taking Email from Users Table for that Name.
Now I have created an automation bot for Entry Table and event I have selected send an email, where in the place of sent to I have placed [Email] column of Entry Table, and in the Email Body I have placed [Name] Column. When this event is trigged, the person whom I have selected in the Name of the Person column are getting emails, but I want there Name to be displayed to whom the email is getting triggered, as I have placed [Name] Column in the Email Body, but what is happening is I am getting all the values of the Name of the Person Column instead of one.
To give you a better example, lets say in the Entry Table and in the Name of the Person Column, I have selected three values as test 1, test 2, test 3. So as soon as I save they are getting emails but everyone are getting emails like this
Dear test 1,test 2, test 3 for all the emails that are sent
Instead of Dear test 1, if the email is sent to test1@gmail.com
Instead of Dear test 2, if the email is sent to test2@gmail.com
Instead of Dear test 3, if the email is sent to test3@gmail.com
So, my question is what formula should be placed instead of [Name] Column in the Email Body