lopiteaux
Board Regular
- Joined
- Jun 8, 2011
- Messages
- 77
Hi,
I need to compare 2 datasets, both with ~20k records, and determine whether a record in dataset A is present in dataset B.
The keys I need to compare need to take into account:
- case sensitivity (the keys are only unique when this distinction is made);
- wildcards (the keys can contain *, ?, ~, &, $, <, etc.)
I can accomplish the task using an exact match lookup (below), but the calculation time is ~10-15mins. Is there a better and faster way to do this via VBA?
{=INDEX(data_column,MATCH(TRUE,EXACT(value,lookup_column))}
Cheers,
l.
I need to compare 2 datasets, both with ~20k records, and determine whether a record in dataset A is present in dataset B.
The keys I need to compare need to take into account:
- case sensitivity (the keys are only unique when this distinction is made);
- wildcards (the keys can contain *, ?, ~, &, $, <, etc.)
I can accomplish the task using an exact match lookup (below), but the calculation time is ~10-15mins. Is there a better and faster way to do this via VBA?
{=INDEX(data_column,MATCH(TRUE,EXACT(value,lookup_column))}
Cheers,
l.