Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter jordanveverica

    (@jordanveverica)

    My apologies, I have resolved my issue.

    (function(){
    if(fieldname8>=40)
    return ‘Yes’;
    else return ‘No’;
    })()

    Thanks for being helpful with my other inquiries.
    Great plugin.

    Plugin Author codepeople

    (@codepeople)

    Hi,

    The syntax of your equation is incorrect, it would be as simple as:

    IF(fieldname8 >= 40, 'Yes', 'No')

    Another possible equation would be:

    (function(){
    if( fieldname8 >= 40 ) return 'Yes';
    return 'No';
    })()

    The following code is equivalent to the previous ones:

    (fieldname8 >= 40) ? 'Yes' : 'No'

    If you need additional help with your project we can offer you a custom coding service through our private website:

    http://cff.dwbooster.com/customization

    Best regards.

    Plugin Author codepeople

    (@codepeople)

    Hi,

    I’m sorry, I’ve published my ticket without check your last entry.

    Best regards.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Greater Than or Equal To’ is closed to new replies.