Skip to main content

Hi , 

 

Request help with below formula on screen flow to display a text 

 

IF(({!Account_s_credit_score} * {!Account_s_current_liquidity} )* {!Multiplier} >500 ,  “Approved” , “Declined”)

 

gives a syntax error. Unable to figure it out. 

 

Request some guidance.

 

Kind Regards

Amit Gomes 

7 Antworten
  1. 18. Okt. 2022, 18:19

    Hi @Amit Gomes

     

    Can you please try the below 

    IF

    (

    ({!Account_s_credit_score} * {!Account_s_current_liquidity} * {!Multiplier}) > 500, "Approved" , "Declined"

    )

0/9000