Hi, I have a confusing [to me] problem -- I need to use multiple IFs in a creative way, I think.
I need to find the 1s from column J, then get the percentage of those 1s "scoring" a 1, 2, or 3 in AN, by using something like this:
I don't see how I can use that here though, given I need to get the percentage of 1s, 2s, and 3s given these "judging" criteria (above).
If I can get how to do this for even one of these things (how to get AN's 1s)
Sample Data:
J
1
1
2
1
2
2
AN
1.25
3.12
2.35
1.37
1.00
2.10
Ideal result (down 3 rows (just need the percentages)):
24% of 1s in J = 1 (or <1.8)
72% of 1s in J = 1 (or <2.7)
4% of 1s in J = 1 (or >2.7)
I need to find the 1s from column J, then get the percentage of those 1s "scoring" a 1, 2, or 3 in AN, by using something like this:
Code:
=IF(AN17<1.8,1,IF(AN17<2.7,2,IF(AN17>2.7,3)))
I don't see how I can use that here though, given I need to get the percentage of 1s, 2s, and 3s given these "judging" criteria (above).
If I can get how to do this for even one of these things (how to get AN's 1s)
Sample Data:
J
1
1
2
1
2
2
AN
1.25
3.12
2.35
1.37
1.00
2.10
Ideal result (down 3 rows (just need the percentages)):
24% of 1s in J = 1 (or <1.8)
72% of 1s in J = 1 (or <2.7)
4% of 1s in J = 1 (or >2.7)