mikey090tx
New Member
- Joined
- Jul 7, 2011
- Messages
- 2
Hello All-
I am wondering if anyone would be able to assist with the following scenario. I am working on a project that involves adding variable data into cells that is then "graded" and given a point value. The data is as follows
Let's say cells A1-A20 contain the variable data and that the data can range from 2:55 to 3:25 (time). Cell B2-B20 would return a "score / grade" if the data in cell A1 was between the following criteria
2:55 – 3:05= 3 score
3:06-3:15= 2 score
3:16-3:25= 1 score
I have only been able to come up with this function and can only return 1 value and cannot place a difference or return the accurate variable if the time doesnt fall between the time that i use in the fuction. i tried to add more fuctions in different cells but get mutiple returns on the same time in A1. I hope this make sense. In the example below, if i entered 3:00 in cell A1 and used a fuction for every one of the three score categories i would end up with a 3 and a 2 and a 1 and i only want the formula to return one value for which the time actually fall between.
=IF(A1="","0",IF(A1<3:16,2,0))
I am wondering if anyone would be able to assist with the following scenario. I am working on a project that involves adding variable data into cells that is then "graded" and given a point value. The data is as follows
Let's say cells A1-A20 contain the variable data and that the data can range from 2:55 to 3:25 (time). Cell B2-B20 would return a "score / grade" if the data in cell A1 was between the following criteria
2:55 – 3:05= 3 score
3:06-3:15= 2 score
3:16-3:25= 1 score
I have only been able to come up with this function and can only return 1 value and cannot place a difference or return the accurate variable if the time doesnt fall between the time that i use in the fuction. i tried to add more fuctions in different cells but get mutiple returns on the same time in A1. I hope this make sense. In the example below, if i entered 3:00 in cell A1 and used a fuction for every one of the three score categories i would end up with a 3 and a 2 and a 1 and i only want the formula to return one value for which the time actually fall between.
=IF(A1="","0",IF(A1<3:16,2,0))