how to add a subtraction field in text field properties
I need to subtract B & C from A to get a sum in A-B-C

What formula should i use in field notation or custom.
I need to subtract B & C from A to get a sum in A-B-C

What formula should i use in field notation or custom.
You need to put a back-slash before each space in the field names...
It might be better to use a custom script for it, though.
The format of it should be something like this:
var a = Number(this.getField("A Approved...").value);
var b = Number(this.getField("B Amount...").value);
var c = Number(this.getField("C Spent...").value);
event.value = a - (b+c);
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.