Count Age equals or below 14

Hello Juan! According this articleimage
it is not recommended to use count if in your formulas, because it’ll be slower.
Instead, create a filter with your condition and then count the number of items that match said condition. In your case, your formula would end up looking like this:

[Family Database].Filter(Age<=14).Count()

1 Like