Hi everyone,
I have a dataset in which I need to group a column of numbers in the following way:
0
<=0.34
>0.34&<=0.66
>0.66&<=1
I essentially need counts from this column in each grouping so I can then determine the percent of each group in the column. I used Excel's COUNTIFS function for each group:
=COUNTIFS(D:D,"<="&H10) [this gives me the count of "0" in the column]
=COUNTIFS(D:D,">"&G11,D:D,"<=&H11) [this gives me the count of number > than and less than or equal to .34]
=COUNTIFS(D:D,">"&G12,D:D,"<="&H12) [this gives me the count of numbers > than .34 and less than or equal to .66]
=COUNTIFS(D:D,">"&G13) [this gives me the count of numbers > than .66]
In Alteryx, I have the summarize tool which gives me the count for the column in question, but now I'm stuck on how to get the column into these groupings.
I'm happy to provide any additional information. Thank you for your help!
Jenn