I’m working with Dataverse and sending an email from a flow. I’m able to display normal column values fine, but when I include a lookup column, the email shows “weird” values (e.g. GUIDs / table logical names.
cr0bf_l4processstep (normal column) > abcde
cr0bf_l3_processcategory(lookup column) > cr0bf_dimprocesscategory,48f84904-7993-453f-bc30-03e69b4ddc90
Below is my formula. Any help would be appreciated! Thank you.
if(
empty(outputs('List_rows')?['body/value']),
createArray(),
coalesce(
json(
coalesce(
first(outputs('List_rows')?['body/value'])?['changedata'],
'{"changedAttributes":[]}'
)
)?['changedAttributes'],
createArray()
)
)