Hello Martin,
You can use this, if the Invoice Amount field is a currency field: $InvoiceAmount = Currency(0)
Or this, if it is a number: $InvoiceAmount = 0
I hope this helps.
Roland
Comment actions
Morning all,
I want an email to be sent if a Milestone is closed but the Invoice Amount field is not 0.
So far I've got:
IsChanged($State) && $State='Completed'
But I'm not sure what the script is to check if the value of the field is 0.
Thanks for any help
Please sign in to leave a comment.
Hello Martin,
You can use this, if the Invoice Amount field is a currency field: $InvoiceAmount = Currency(0)
Or this, if it is a number: $InvoiceAmount = 0
I hope this helps.
Roland
Thanks Roland,
I think that checks if the field is 0. What if I wanted to check that its is Not 0?
Cheers
Hi Martin,
Then you can use $InvoiceAmount <> Currency(0) or $InvoiceAmount <> 0
Thanks Roland