Hello everyone, I need to perform some calculations on excel, however, I need to perform them with cells that have text characters in them.
ex) B1: < 0.003, B2: < 0.004, B3: < 0.005
I need to find st.dev for these.
Can anyone help me with this? I am currently using this equation:
=STDEV(SUMPRODUCT(MID(0&B1,LARGE(INDEX(ISNUMBER(--MID(B1,ROW($1:$25),1))* ROW($1:$25),0),ROW($1:$25))+1,1)*10^ROW($1:$25)/10), SUMPRODUCT(MID(0&B2,LARGE(INDEX(ISNUMBER(--MID(B2,ROW($1:$25),1))* ROW($1:$25),0),ROW($1:$25))+1,1)*10^ROW($1:$25)/10), SUMPRODUCT(MID(0&B3,LARGE(INDEX(ISNUMBER(--MID(B3,ROW($1:$25),1))* ROW($1:$25),0),ROW($1:$25))+1,1)*10^ROW($1:$25)/10))
But it doesn't give the right answer. The answer should be 0.001 but I am only getting 1. Can anyone help me fix this?
Thank you!
Alex