I seem to be stuck trying to get Distinct emails from a collection and emails from a predefined string value combined together.
Below is what I have, but the Value is not recognized.
Distinct(Concatenate(Concat(colManagerEmails,Value," ;"),"; abc123@gmail.com"),Value)
Below is the OnSelect for a Button that Collects the colManagerEmails from all the SP items shown in Gallery1
Collect(colManagerEmails,Distinct(ForAll(Gallery1.AllItems,Office365Users.ManagerV2(ThisRecord.'aCreated By'.Email)),mail))
I'm trying to combine the colManagersEmails value in the Concat and then Concatenate the collection with a predefined string of Email values.
Can someone point me in the right direction?