ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Problems using autosum when VLOOKUP produces #N/A (https://www.excelbanter.com/excel-discussion-misc-queries/132298-problems-using-autosum-when-vlookup-produces-n.html)

Lele

Problems using autosum when VLOOKUP produces #N/A
 
I have a prepopulated order form which uses VLOOKUPS. Until the user
completes a line, VLOOKUP produces a not available result #N/A. I would like
to include an order total field which gives the user a constantly updated
order total, however the #N/A is preventing me from doing so. As long as
there is a #N/A in the colum, the sum field only shows #N/A

Is there a way to get the sum to work?
THanks
--
Lele

Dave Peterson

Problems using autosum when VLOOKUP produces #N/A
 
If you're typing the value to look up in column A, maybe you could use:

=if(a2="","",vlookup(a2,.....))

=sum() will ignore text values--including "".

Lele wrote:

I have a prepopulated order form which uses VLOOKUPS. Until the user
completes a line, VLOOKUP produces a not available result #N/A. I would like
to include an order total field which gives the user a constantly updated
order total, however the #N/A is preventing me from doing so. As long as
there is a #N/A in the colum, the sum field only shows #N/A

Is there a way to get the sum to work?
THanks
--
Lele


--

Dave Peterson

Bala

Problems using autosum when VLOOKUP produces #N/A
 
You could also use Iserror in combination with If statement to work around
this problem.... for example if your vlookup is like
=vlookup(a2,page!A2:G15,3,false).... then just add
if(iserror(vlookup(a2,page!A2:G15,3,false))=true,0 ,vlookup(a2,page!A2:G15,3,false)).
This function will get rid of any errors that appear in the vlookup function.
I hope this helps.

"Dave Peterson" wrote:

If you're typing the value to look up in column A, maybe you could use:

=if(a2="","",vlookup(a2,.....))

=sum() will ignore text values--including "".

Lele wrote:

I have a prepopulated order form which uses VLOOKUPS. Until the user
completes a line, VLOOKUP produces a not available result #N/A. I would like
to include an order total field which gives the user a constantly updated
order total, however the #N/A is preventing me from doing so. As long as
there is a #N/A in the colum, the sum field only shows #N/A

Is there a way to get the sum to work?
THanks
--
Lele


--

Dave Peterson



All times are GMT +1. The time now is 12:23 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com