Hello,
I've managed to create a flow which populates a Word template based on a specific record and then converts that into a PDF file. Within the population I'm using the "Created By" field and "Environment" which is a Choice field within the Dataverse Table.
On the Created By its populating the document with the ID of the user who created the record, how do i do it so it displays the Name of the user instead, or email address?
On the Environment its populating the value number of the choice, how do i populate the it so it displays the Name of the choice instead of the number?
Any help would be much appreciated, thank you.
Nevermind i found the solution myself in the end. For anyone else wanting to do this, this is what i used instead.
Created By = @{items('Apply_to_each')?['_createdby_value@OData.Community.Display.V1.FormattedValue']}
Choice Field = @{items('Apply_to_each')?['FIELDNAMEHERE@OData.Community.Display.V1.FormattedValue']}