How do you retrieve a data if it's in the 2nd level lookup like the example below?
Company Entity
'-----> Employee Lookup
'-----> Health Record Lookup
'------> Last Checkup Date
So, basically, I want to retrieve the Last Checkup Date of the employees of the Company.
I tried this but it gives me an error saying "Multiple levels of many-to-one relationship expansion aren't supported."
ClearCollect(CompanyHealthRecord, Filter(Company, Employee.HealthRecord.LastCheckupDate < Now()));
Any workaround for this?