Skip to main content
Chris Welch (Traka) a posé une question dans #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 réponses
  1. 15 janv. 2025, 13:33

    Try this:

    IF(

    AND( {!Global_Accounts_c} = TRUE,

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

    ),

    1,0)

0/9000