Sum IF NOT IsNull Help
I have a formula for calculating value within a table field called Indication with the value "bef-pat":
Sum(IIf(Not IsNull([Indication1]),1,0))
i want to add another field and to the formula, for example
Sum(IIf(Not IsNull([Indication1] & [Indication2]),1,0))
I...