I'm trying to sum volumes in a table, however I have more than one unit of measure (liters and milliliters). I created the following in the 2007 Access Expression Builder, but when I run the query, the /1000 (to take mL to L) does not calculate.
Any suggestions on how to fix?!
Code:
CONVERT: IIf([UOM]="Milliliter*",[VOLUME]/1000,[VOLUME])
Comment