Display Boolean Field in PowerApps Portal Liquid When you use FetchXML to display a boolean field in a PowerApps Portal the response will display True if Yes or False if No. Use the following control flow tag and liquid operators to change the text to display Yes (if True) or No (if False). {% if result.agreeterms== True %} Yes {% else %} No {% endif %}