Let's say I have two fields A and B and one textbox B_input. I would like to set up a query so it sums all entries of column A where B = B_input

Currently I have:

==Sum(IIf([B_input]<>"All",[A],IIf([B_input]<>[B],0,[A])))

I did more testing, it seem the problem is that under Sum(IIF([B_input])), it's not recognizing the value of [B_input], but if I just have IIF([B_input]), it recognize the value just fine, any ideas?

link|improve this question

76% accept rate
We are trying to edit the post at the same time, I'll wait a while before trying to make more changes. – JP. Jan 5 at 19:12
Thanks, I just added some more information. – Yongke Bill Yu Jan 5 at 20:32
feedback

3 Answers

iif([B_input]=="xyz",Sum[A],False)

Might be what you're after but I'm not sure i understood your question properly.

Alternatively, just edit the sql to something like

SELECT(SUM[A]) AS SumOfA FROM [MyTable] HAVING ("B"="xyz");
link|improve this answer
feedback

How about:

=Sum(IIf([B_input]<>"All",[A],0))
link|improve this answer
Didn't work, throw an #error. – Yongke Bill Yu Jan 5 at 19:31
@Yongke Where are you trying to do this? Because that is a fairly standard answer. – Remou Jan 5 at 19:32
Expression Builder of a textbox in a forum. Does it have to do with [B_input] is a forum textfield and not a table field? – Yongke Bill Yu Jan 5 at 20:13
@Yongke So what are you summing? Do you mean a textbox in the form footer of a continuous form? Because if not, you need to say exactly what you wish to achieve - sum may not be the answer. – Remou Jan 5 at 20:16
Yes, that is the case. I have a textbox at the end of a continous form. [A] and [B] are columns, while [B_input] is a textbox. It doesn't seem to recognize the textbox value of [B_input]. – Yongke Bill Yu Jan 5 at 20:24
show 10 more comments
feedback
up vote 0 down vote accepted

Gave up, went with form filtering instead.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.