Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @sasudt

    If you want to calculate the 1.75% of X, you must enter the mathematical operation X*1.75/100

    If the minimum value accepted is 0.25, you should use the MAX operation:

    MAX(0.25, X*1.75/100)

    And if the maximum value accepted is 25, you should use the MIN operation:

    MIN(25, MAX(0.25, X*1.75/100))

    Now, you only need to replace X with the corresponding field’s name.

    Best regards.

    Thread Starter sasudt

    (@sasudt)

    thanks. you awesome

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Transfer Fees calculator’ is closed to new replies.