I have a column with number values. <br>I wanna make 3 ranges by using criterias like 0<x<10,10<x<20, 20<x<30 and I wanna see the ranges as 3 columns with counted(not summed) values. <br><br>thanks in advance!<br><br>
Give us a sceanrio.<br><br>Field1 Field2<br>1234 la de dah<br>3213 la de dah<br>2323 la de dah<br><br>and a result that you want. <p>DougP<br><a href=mailto: dposton@universal1.com> dposton@universal1.com</a><br><a href= > </a><br> Ask me how Bar-codes can help you be more productive.
Go to the QBE and create 3 calculated columns like the following. <br><br><br>IIf (field > 0 and field < 11), 1, 0)<br>IIf (field > 10 and field < 21), 1, 0)<br>IIf (field > 20 and field < 31), 1, 0) <br><br>Then SUM the columns and this will give you a count of the values that fall in the different ranges.<br><br>Jerry
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.