hello,
Is it possible to display the associate Current Portal User's Name on a Page for example, Hello Smith, John.
The full name is retrieved from the Contact record in dataverse.
thank you in advance

hello,
Is it possible to display the associate Current Portal User's Name on a Page for example, Hello Smith, John.
The full name is retrieved from the Contact record in dataverse.
thank you in advance
Use Liquid in the page content
{% if user %}
Hello, {{ user.fullname | escape }}!
{% else %}
Hello, anonymous user!
{% endif %}
https://learn.microsoft.com/en-us/power-pages/configure/liquid/liquid-objects#user