VI Conditional Expression for QuantityOrdered equaling QuantityInvoiced

SOLVED

Running SAGE 100 v2018 and am exporting out of PO_PurchaseOrderDetail.  Trying to figure out the correct syntax for a conditional statement where a TEMP field will either populate "OPEN' or "CLSD" depending on if QuantityOredered = QuantityInvoiced.  If the QuantityOrdered and QuantityInvoiced are the same amount, my hope is the TEMP field will return "CLSD".  If they don't equal each other, my hope is the TEMP field will return "OPEN".  My attempt is this:

TBL(POS(PO_PurchaseOrderDetail01.QuantityOrdered=PO_PurchaseOrderDetail01.QuantityInvoiced),"CLSD","OPEN")

However, that doesn't seem to work.  I thought it might have to do with the Data Type but I've tried both Number and String but that didn't make a difference.