IF Function with Less Than Values
How do you formulate an IF function where if the value of Field "C" is less than 70,000, then the value of Field "Tier 2" is not formulated?
Right now, this is what I have:
event.value = (70000-this.getField("C").value)*0.2;
if(C<70000)event.value,"Not Commissionable"
I know this isn't correct as I am not a professional with Javascript or Advanced Calculations, but I would like to know how to do this.
Thank you!
