I'm trying to do a sum if. If Client Title is "Chairman", sum the $Medicare. I have it as =Sum(IIf([Client Title],"Chairman",[$Medicare])) and I'm getting, This expression is typed incorrectly or it is too complex to be evaluated.
That is the least efficient method. PLUS, it GUARANTEES program maintenance will be required if some value in that column changes. The list method displayed in subform is the least likely method to require future maintenance. Even the Crosstab is likely to require form maintenance if the number of items increases and makes the crosstab too wide.Were this me, I would probably use a sum query on $Medicare and use a control to hold the title. This lets you use the same structure for any title.
OP posted in the REPORT forum, so I'm not looking at subforms or queries.That is the least efficient method. PLUS, it GUARANTEES program maintenance will be required if some value in that column changes. The list method displayed in subform is the least likely method to require future maintenance. Even the Crosstab is likely to require form maintenance if the number of items increases and makes the crosstab too wide.
This error implies the sum is in a query, you would just get #error if it was the controlsource to a controlor it is too complex to be evaluated.
Reports are easily bound to Crosstabs.OP posted in the REPORT forum, so I'm not looking at subforms or queries.
First, get rid of the $ in the $Medicare field name. Never ever use special characters in a table or field name.I'm trying to do a sum if. If Client Title is "Chairman", sum the $Medicare. I have it as =Sum(IIf([Client Title],"Chairman",[$Medicare])) and I'm getting, This expression is typed incorrectly or it is too complex to be evaluated.
That was it. Thank you. I have it working. I thought I tried that but must not have.=Sum(IIf([Client Title]="Chairman", [$Medicare], 0))
Are there other conditional Sum expressions?
Strongly advise not to use spaces nor punctuation/special characters (underscore only exception) in naming convention.
Because the question was posted in reportsWhy assume a report?