What fomula will tell me if the values in column B(DIFF) fall into one of these categoires, Between 0.00 and 0.25 is .25, Between 0.251 and 0.50 is .50. Between 0.51 and 0.75 is .75. Greater than 0.751 is 1.00
Thank you- how can I moify the formula to look for ranges, ie between .25 and .49 for a value then .50 and .74, etc. Can I also add negative values in the formula ie lookign for between -.25 and -.50?
it technically is looking at ranges... if the value is not less than or equal to .25, it'll look to see if the value is less than or equal to .5. That establishes the ranges <=.25 will = .25, anything >.25 to <.50 will = .5 ...maybe im not understanding your first question. (do you want a value between .25 and .49 to return something besides .25? if so, you would just manipulate the ranges and criteria. are you familiar with the IF function?)
to add negative ranges, you would just add more arguments to establish the desired criteria.
TIP: i find it easier to read to build the formula 'in order' (ie:smallest to largest or vice versa) so IFWM, i'd start with the negative range criteria first then work my way up.