I found a couple of blogs that describe this; however, I cannot get it to work. Requirement: show form to users who are associated with an account. If no account record, show some text. I followed this: https://www.engineeredcode.com/blog/dynamics-365-portal-using-liquid-to-create-conditional-entity-forms
hi, it seems your code is trying to compare the user.account object to blank
blank in this case doesn't exist, it isn't a liquid object.. so it's just a code syntax mistake
try something like
{% if user.account %}
// show entity form....
{% else %}
// ....
{% endif %}
for more liquid information you can look at this: https://docs.microsoft.com/en-us/powerapps/maker/portals/liquid/liquid-types
Fubar
62
Super User 2025 Season 2
Lucas001
48
Super User 2025 Season 2
KevinGador
44
Super User 2025 Season 2