Hello,
I have an existing MS Flow which is having a "List records" action of D365 CRM, which is fetching the records of an entity "QPR". In the next step, I am creating a CSV file using the ODATA query.
For example:-
if(empty(item()?['field_name']),'',item()?['field_name'])
Now, the problem is that I am not able to access the grand-child lookup record.
For example:-
There is a Lookup field named "A" in the entity "QPR". And, I want to access the "ABC" field of the Lookup "B" in the Lookup "A" record in the "QPR" entity.
Is it possible to get this level of record in MS Flow? How could I achieve it?