I have a simple contact gallery that shows all my contacts from Office365Outlook. However I can't get the email to show in the gallery. It seems to be getting pulled into the collection just fine but I can't get it to show when I select the item either. I get the error "This formula uses scope, which is not presently supported for evaluation."
this is the code I'm using for collection and couple of screen shots to give you some idea of what I'm trying to do.
ClearCollect(selectedcontact,{DisplayName:ThisItem.displayName, Company:ThisItem.companyName,Email2:ThisItem.emailAddresses.address})
App
Collection
Sub table for emails
Solved! Go to Solution.
Hi @Jarrodm ,
Try this instead
Email2:First(ThisItem.emailAddress).address
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
Hi @Jarrodm ,
Try this instead
Email2:First(ThisItem.emailAddress).address
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps