Friday, 7 June 2024

Set Lookup through expression conditionally in power automate flow

use the following expression to set lookup, change the systemusers entity with your entity plural name

    if(empty(variables('Owner ID')),
    '',
    concat(
        'systemusers(',
        variables('Owner ID'),
        ')'
    )
)

Read only field , get latest value from read only field in in power app portal

Below line is used to make field readonly in power app portal through js $( "#bdo_relationshiprole_name" ).parent().css( "po...