Hi, putting a comparison in as the byVar argument is a nice idea:
Col Sum( :weight, :age, :height >= 60 )
I am interested in putting a comparison in the byVar argument that is comparing it to the current row:
myheight = :height;
Col Sum( :weight, :age, :height >= myheight )
This does not work as expected: the calculation shows a confusing set of numbers, and then they all change to "1" if I change someone's height.
Is there a way to do this?
(Just for a better frame of reference, in my actual table, I am trying to count rows where the date in colA is greater than the datevalue in colA and where the date in colB is less then the datevalue in colB.)