I was recently stumped in an excel test by the question make it say true next to all values greater than 3 and less than 6 ...with a formula.
I was stumped because confronted with that in real life i wouldn't use a formula, i'd hit the filters and type TRUE next to them, or maybe use a bit of macro code like this ....
If ActiveCell.Offset(0, -1) >= 3 And ActiveCell.Offset(0, -1) <= 6 Then ActiveCell = "TRUE"
so i became a victim of perhaps knowing the hard way but not the easy way....(it's an AND formula)
I was stumped because confronted with that in real life i wouldn't use a formula, i'd hit the filters and type TRUE next to them, or maybe use a bit of macro code like this ....
If ActiveCell.Offset(0, -1) >= 3 And ActiveCell.Offset(0, -1) <= 6 Then ActiveCell = "TRUE"
so i became a victim of perhaps knowing the hard way but not the easy way....(it's an AND formula)