Skip to main content
Amit Gomes (Kiwi Routes Limited) 님이 #Formulas에 질문했습니다

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개
  1. 2022년 10월 18일 오후 6: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