Skip to main content

How to Set Lookup value to avoid null value in MS Flow

Set Default Value Null if no data is there in lookup Field Ms flow

if(
empty( outputs('Get_a_row')?['body/_new_tabella_value']
    ),
null,
concat('
new_masters(', outputs('Get_a_row')?['body/_new_tabella_value']
      ,')
')
)

Comments