I am a bit new to using Power FX versus JavaScript for lookup tables and was looking for building the query statement for retrieving the record owner name versus the GUID value in Dataverse table i.e.
Can someone assist with the function?

I am a bit new to using Power FX versus JavaScript for lookup tables and was looking for building the query statement for retrieving the record owner name versus the GUID value in Dataverse table i.e.
Can someone assist with the function?
Hi @DouglasR
To get the details of the owner of the record, you need to use "Get a row by ID" action. Pass the owner value dynamically from the trigger:
The output will be an object from where you can get the first name, last name or other user attributes. Here I have fetched the first name of the owner in compose action:
The output of compose action will give the first name of the record owner.
Output:
If this helps & solves your problem, please remember to give a 👍 and accept my solution as it will help others in the future.