Nesting a custom calculation into an IF Statement
Hi
I have 4 fields.
"Blank Check" is a Y/N dropdown
"Mark Up" is a list of percentages
"Check amount" is a free text field that only accepts numbers
"Billable Amount" multiplies "Check Amount" and "Markup" and adds that to the value entered into "check amount" for a total.
What I need to do is create a formula that automatically runs the same calculation, but adds $1.00 to the total, to flag an amount to be adjusted later.
The formula I am using as of now is
CheckAmt * MarkUp + CheckAmt
And this is the formula I have tried
if(this.getField("BlankCheck").value="Yes")
event.value=("CheckAmt")+1
Any help would be appreciated.
