In 2021, I wrote a series of blog posts on how to navigate up and down a chain of Dataverse tables
At the time, finding the related parent or child records was straightforward using dot notation, but finding more distant relatives was do-able but more complicated. Now I’m really pleased to say that Microsoft have made big improvements
Below is the table structure I used in the blog posts at the time, and I’ll use it again now
Identifying Parent & GrandParent Records
Let’s first look at navigating up a series of related tables
To find the Region for a particular County, simply use dot notation to traverse the Lookup column to access the parent table
ThisItem.County_Region.RegionName
You can also easily identify the Country by extending the dot notation a table further
ThisItem.County_Region.Region_Country.CountryName
Even finding the Great-GrandParent isn’t a problem