JackDanIce
Well-known Member
- Joined
- Feb 3, 2010
- Messages
- 9,922
- Office Version
- 365
- Platform
- Windows
Hi,
Is there a list that tells me what functions execute faster than others or how can I work this out for myself?
A problem posted yesterday asked for a YES or NO output if a value existed in a range or not. Two solutions were suggested:
and
And, similarly, I know how INDEX(MATCH for large data sets is (can be?) faster than VLOOKUP for the same result
So curious to know when using functions, if my sole objective was fastest calculations/execution, what to consider and how?
Thoughts please, thanks,
Jack
Is there a list that tells me what functions execute faster than others or how can I work this out for myself?
A problem posted yesterday asked for a YES or NO output if a value existed in a range or not. Two solutions were suggested:
Code:
=IF(ISNUMBER(MATCH(B1,$A$1:$A$100,0)),"Yes","No")
Code:
=IF(COUNTIF($A$1:$A$100,B1)>0,"Yes","No")
So curious to know when using functions, if my sole objective was fastest calculations/execution, what to consider and how?
Thoughts please, thanks,
Jack