Not signed in (Sign In)

Vanilla 1.1.5a is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthoralworlk
    • CommentTimeAug 17th 2010
     
    I'm trying to update static values of fields based on selections made by the user. I want to do this to minimize the number of fields required and to populate Salesforce correctly.

    I have an Industry field that is set as a variable (Industry). It has a value of Media which has a variable value of 5. I want to make another field equal to "Media/Communications", if Industry = 5.

    I was looking at this post and trying variations of the formulas here, but I'm still getting an error.
    http://www3.formassembly.com/forum/discussion/431/formula-within-calculated-field/#Item_0

    This is what I currently has as my formula:
    If(Industry==5){'Media'}else{""}

    This is the form: http://www.tfaforms.com/174242
    • CommentAuthordbuschho
    • CommentTimeAug 18th 2010
     
    Resolved in support system.

    code should be:
    if(Industry==5){'Media'}else{""}