Here is another question I have about the use of IIf say for example I want
I want to Select ITEM_NO,ITEM_DESC, and sum the QTY_SHIPPED as UNITS_SHIPPED and Sum the DOLLARS_SHIPPED as TOTAL_DOLLARS based on the below IIf statement.
Select (IIf(ORD_NUM<'90000000')),ITEM_NO,ITEM_DESC, SUM QTY_SHIPPED as UNITS_SHIPPED, SUM DOLLARS_SHIPPED as TOTAL_DOLLARS
I am really trying to understand the syntax of the IIf within a select.
Thanks,
Tbonehwd
I want to Select ITEM_NO,ITEM_DESC, and sum the QTY_SHIPPED as UNITS_SHIPPED and Sum the DOLLARS_SHIPPED as TOTAL_DOLLARS based on the below IIf statement.
Select (IIf(ORD_NUM<'90000000')),ITEM_NO,ITEM_DESC, SUM QTY_SHIPPED as UNITS_SHIPPED, SUM DOLLARS_SHIPPED as TOTAL_DOLLARS
I am really trying to understand the syntax of the IIf within a select.
Thanks,
Tbonehwd