I have two columns: member ID and member score. What I need to do is count the number of members if their score is greater than a specific value. I was thinking some sort of do over loop... For example, I want to count the number of members where score > 0.20 in increments of increasing the score by 0.01 until we end at count members where score > 0.40.
I was tinkering with arrays and do loops, but I can't figure it out. In the array I don't know if I can use something like
put nobs=; output;
You can use a second data set for your break point values and a SQL join to perform the criteria based counting.
Example: