Announcements
LookUp( 'TOOLS Details', 'Tool Name' = ComboBox2.Selected.Result, 'Tool Owner' )
You’re using LookUp, which returns only one record, so you’ll only ever get one email.
LookUp
For a multi-select people picker, you need to handle it as a table, not a single value.
Use Concat instead:
Concat
Concat( LookUp( 'TOOLS Details', 'Tool Name' = ComboBox2.Selected.Result ).'Tool Owner', Email, ";" )
'Tool Owner'
Concat()
Email
";"
With( { varOwners: LookUp( 'TOOLS Details', 'Tool Name' = ComboBox2.Selected.Result ).'Tool Owner' }, Concat( varOwners, Coalesce(Email, Mail), ";" ) )
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Users!
Congratulations to our 2025 community superstars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
11manish 556
WarrenBelz 412 Most Valuable Professional
Haque 296