Hi there,
In my outlook i have a list of contacts containing names, id's, emailadresses etc.
My app has a screen on which i want to display the contacts along with their info in a gallery. The gallery is filtered by a searchbox. I have no problems importing the data to my gallery using the below:
If(
IsBlank([@TextSearchBox4]);
Office365Outlook.ContactGetItems("Contacts").value;
Filter(
Office365Outlook.ContactGetItems("Contacts").value;
StartsWith(
DisplayName;
[@TextSearchBox4].Text
)
)
)
However, i have difficulties displaying the imported data. For an example, it will not let me display the email-adress of the contact. Having looked into this and tried saving the data in a collection, i can see that some columns, including the one containing email-adresses, store the values as tables. So i have got a table within a table.

How do i convert these secondary tables to values or text?
Any suggestions?
J