Hello and hope everyone is doing well. I'm very new to power apps. Basically first day. I have been messing around in power apps and enjoying it but having some issues with a collection.
I created a collection by :
Collect(colDirectReports, Office365Users.DirectReportsV2("paulk@test.com"));
which has in it the users that this person manages. But when i look at the collection I see the collection only has 1 row. If I expand that row, then i have all may data I'm trying to retrieve in there.

I presume this is nested. If i click on the table icon under value I see all my data. How can I retrieve this data into a gallery. I have tried putting in colDirectReports in the Item field of the gallery but when I try to configure a title say with ThisItem I do not see any values for me to set.
I have been looking for an answer to this for a day.
I also have another basic issue also. If I where to create a variable by
Set(varPresident, Office365Users.SearchUser({searchTerm: "Paulk"}));
Set(varTest, varPresident.Id);
I'm just wondering why the command for Collect(colDirectReports, Office365Users.DirectReportsV2("paulk@ippolitogroup.com")); would not use the variable if I put it in like :
Collect(colDirectReports, Office365Users.DirectReportsV2(varTest)); It almost seems like the input is not a string.
Any help or direction would be great.
Cheers
Chris