using a SUM IF formula in Access -


I am trying to submit "Order Quantity" from a table in my Access database where "Name of the Content Group I am using: "Equals" via generic RX "formula

I'm using: Order: SUM (IIF ([Material Group Name] = (Generic Rx). [Order Quantity], 0)

But I'm getting an invalid syntax error on the generic RX expression

The value of "Genetic Rx" "Content Group No "What's the best way to go about this?"

  SIF (IIF ([name of physical group] = (normal RX). [Order quantity], 0) | 1 2 3  
  1. Literal To split the text value, use quotation marks instead of brackets.
  2. Use a comma between the IIf arguments.
  3. Each open bracket By a close bracket no Should be Ulit.

This must be done ...

  SUM (IIF ([content group name] = "normal rx", [order quantity], 0) )  

Comments

Popular posts from this blog

python - Overriding the save method in Django ModelForm -

html - CSS autoheight, but fit content to height of div -

qt - How to prevent QAudioInput from automatically boosting the master volume to 100%? -