Formula Returns #N/A

S

Shashi Bhosale

I have Following Formula .

=SUMPRODUCT((TRIM(DataRegion)="Latin America")*
(DataAmount))

( DataRegion is a calculated fields and the formaula is
(=VLOOKUP(C117,Regions,2)) )

There is a data with "Latin America".

The SUMPRODUCT formula return me #N/A. What could be the problem?

Thanks in advance,

Shashi
 
T

Tom Ogilvy

generally it will do this if any part of your formula returns #N/A - for
example if it is in a cell in DataAmount or in the results of a cell in
DataRegion.

perhaps try

=SUMPRODUCT(if(iserror(DataRegion),False,TRIM(DataRegion))="Latin America")*
(DataAmount))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top