Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Trouble with If Statement

Hi, Im having an issue with an if statement in an expression. If the dollar amount of a dimension is $0, I want that to enter "Placed", "Order" if there is a dollar amount populated. The below expression is not working for me.

=if(

{$<

[Amount - Shipped/Fulfilled USD]-={'$0.00'}

>}

'Order','Placed ')

Thanks!

1 Solution

Accepted Solutions
sunny_talwar

May be this

If([Amount - Shipped/Fulfilled USD] = 0, 'Placed', 'Order')

View solution in original post

2 Replies
sunny_talwar

May be this

If([Amount - Shipped/Fulfilled USD] = 0, 'Placed', 'Order')

Anonymous
Not applicable
Author

Thank you!