Probably, but we don't know what your data is like, where it is or exactly what you need. Could you give us a small set of dummy data and explain in realtion to that?..can i do it in if functions?
Okay, try this. I've given an example of each result.In A11 the logic must be when there is a consecutive cell with values equal or greater than 35..it must say "for inspection" ..if none it must say "okay"
00 HTML Conversions.xlsm | ||||
---|---|---|---|---|
A | B | |||
1 | 15 | 15 | ||
2 | 35 | 25 | ||
3 | 50 | 39 | ||
4 | 20 | 30 | ||
5 | 10 | 25 | ||
6 | 55 | 88 | ||
7 | 70 | 4 | ||
8 | 65 | 16 | ||
9 | 50 | 32 | ||
10 | 35 | 37 | ||
11 | for inspection | okay | ||
Duwin |
Cell Formulas | ||
---|---|---|
Range | Formula | |
A11 | A11 | =IF(MAX(FREQUENCY(IF(A1:A10>35,ROW(A1:A10)),IF(A1:A10<=35,ROW(A1:A10))))>1,"for inspection","okay") |
Press CTRL+SHIFT+ENTER to enter array formulas. |
If we have the same data how is the requirement different?Follow up question
Given same data
In a11 the logic must be when there is a cell with greater or equal to 35 and the consecutive cells are not yet zero, it must say "inspect" if not "ok"