Jaymond Flurrie
Well-known Member
- Joined
- Sep 22, 2008
- Messages
- 921
- Office Version
- 365
- Platform
- Windows
I have an array of 30 numbers. I want to optimize the calculation time. The original formula I had was =MAX(0,1,0,0,0,0,0,0,0,0,0,1....) and I was wondering if I save anything by re-coding the whole thing to use =OR(0,1,0,0,0,0,0,0,0,0,0,1....)
So basically the question is, what does the OR-function do after it hits that first 1 (or "TRUE", whatever)? Does that still evaluate all 30 numbers or does it understand that the last 28 numbers are meaningless one it runs to the first 1?
So basically the question is, what does the OR-function do after it hits that first 1 (or "TRUE", whatever)? Does that still evaluate all 30 numbers or does it understand that the last 28 numbers are meaningless one it runs to the first 1?