Ok, so here's my issue:
I have a two related entities from the CDS, Person and Family, where a Person points to a Family. In my Person DisplayForm I have a button that navigates to a Family DisplayForm with the function:
Navigate('Family - Family Members', None, {FamilyView: BrowseGallery_PersonList.Selected.Family})
I then have a DisplayForm in 'Family - Family Members' where (DataSource = Family) and (Items = FamilyView), but the view is not working. It's not even throwing an error... it simply doesn't show any information.
But this command works in another instance where I don't use the LookUp/Relationship value to pull in information. For example, in my BrowseGallery for Family, I have the Navigate function for each item send the following function:
Navigate('Family - Family Members', None, {FamilyView:ThisItem})
And this works perfectly for all instances.
Is there something I am not doing properly, or is this a limitation of PowerApps?