D
Drabbacs
I have a workbook composed of 13 source sheets and a
target/summary sheet. The summary sheet pulls info, using
vlookups from the 13 source sheets based on a single input
cell. This works well.
Now I've been asked to provide a functionality that will
support summing info for 10 lookups simultaneously.
I started with a simple vlookup(1) + vlookup(2) +..+
vlookup(10). However, if someone only wants to lookup 3
things, the formula returns N/A.
Then I started to enclose the vlookups in a if(isna(vlookup
(1),0,vlookup(1)))+if(isna(vlookup(2),0,vlookup(2)))+...
structure. That made the formula too long to be handled.
So my question is, how can I get a sum of *upto* 10
distinct lookups while avoiding N/A problems?
Thanks in advance for any help.
Drabbacs
target/summary sheet. The summary sheet pulls info, using
vlookups from the 13 source sheets based on a single input
cell. This works well.
Now I've been asked to provide a functionality that will
support summing info for 10 lookups simultaneously.
I started with a simple vlookup(1) + vlookup(2) +..+
vlookup(10). However, if someone only wants to lookup 3
things, the formula returns N/A.
Then I started to enclose the vlookups in a if(isna(vlookup
(1),0,vlookup(1)))+if(isna(vlookup(2),0,vlookup(2)))+...
structure. That made the formula too long to be handled.
So my question is, how can I get a sum of *upto* 10
distinct lookups while avoiding N/A problems?
Thanks in advance for any help.
Drabbacs