Skip to main content
Chris Welch (Traka) 님이 #Formulas에 질문했습니다

Trying to write a formula on a flow.

 

I have a checkbox and two picklists the Checkbox and the picklist is on the opp page and the other picklist is on the user page.

 

I need to write an error formula which states if the Opportuntiy Checkbox is True and the Opp Division is the SAME as the runnings users Division then show error i.e IF({!var_Traka_Division}={!Get_User_Record.Traka_Division__c}&{!Global_Accounts_c}=TRUE but i need this running on a screen flow on the checkbox

답변 3개
  1. 2025년 1월 15일 오후 1:33

    Try this:

    IF(

    AND( {!Global_Accounts_c} = TRUE,

    TEXT( {!Get_User_Record.Traka_Division__c} )= TEXT({!var_Traka_Division}),

    ),

    1,0)

0/9000