• Resolved bboxbd

    (@bboxbd)


    Hi I like to fill up a field depending another field like when “CountryField” value Usa, currency field value will be usd automati, and it will change depending on country field value,How can I do that?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author EDGARROJAS

    (@edgarrojas)

    Hello!

    That could be done with conditional formulas: https://sfmanual.rednao.com/doc/calculated-fields/#354

    Basically you would need to add a condition for each currency something like this:

    if([Country field].label==’USA’)
    {
    return ‘$’+[Total];
    }
    if([Country field].label==’Japan’)
    {
    return ‘¥’+[Total];
    }

    Dos this helps? If not please let me know!

Viewing 1 replies (of 1 total)

The topic ‘Condition’ is closed to new replies.