zone709

Well-known Member
Joined
Mar 1, 2016
Messages
2,079
Office Version
  1. 365
Platform
  1. Windows
HI,

So this works
=IFERROR(VLOOKUP($H$3:$H$300, Formulas!$B$2:$Z$288,18,0),"")

If I add this
+('Pay (2)'!AH2) Then in returns #Value . I just need to add that cell on another sheet

=IFERROR(VLOOKUP($H$3:$H$300, Formulas!$B$2:$Z$288,18,0),"")+('Pay (2)'!AH2)


I also tried something like this, but couldn't get it so I don't get any errors on return.

=IFERROR(VLOOKUP($H$3:$H$300, Formulas!$B$2:$Z$288,18,0),"")+
IFERROR(VLOOKUP($H$3:$H$300,
'Pay (2)'!
$B$2:$Z$288,33,0"")

But get error any suggestions?
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
are you sure that works?

vlookup lookup value is a single cell not a range. you should have H3 not H3:H300

maybe iserror is hidding an error in your formula
 
Last edited:
Upvote 0
HI,

So this works
=IFERROR(VLOOKUP($H$3:$H$300, Formulas!$B$2:$Z$288,18,0),"")

If I add this
+('Pay (2)'!AH2) Then in returns #Value . I just need to add that cell on another sheet

=IFERROR(VLOOKUP($H$3:$H$300, Formulas!$B$2:$Z$288,18,0),"")+('Pay (2)'!AH2)


I also tried something like this, but couldn't get it so I don't get any errors on return.

=IFERROR(VLOOKUP($H$3:$H$300, Formulas!$B$2:$Z$288,18,0),"")+
IFERROR(VLOOKUP($H$3:$H$300,
'Pay (2)'!
$B$2:$Z$288,33,0"")

But get error any suggestions?


Try

=IFERROR(VLOOKUP($H$3:$H$300, Formulas!$B$2:$Z$288,18,0)+('Pay (2)'!AH2),"")
 
Upvote 0
Orignal


=IFERROR(VLOOKUP($H$3:$H$300, Formulas!$B$2:$Z$288,18,0),"")



New one
Returnd Value trying to add column number ,31 Matching H and D id number

=IFERROR(VLOOKUP($H$3:$H$300, Formulas!$B$2:$Z$288,18,0),"")+IFERROR(VLOOKUP($H$3:$H$300, 'Pay (2)'!$D$2:$AJ$288,31,0),"")
 
Last edited:
Upvote 0
=IFERROR(VLOOKUP($H$3:$H$300, Formulas!$B$2:$Z$288,18,0),"") This works

How do I add this to the one above without getting error? #value
+IFERROR(VLOOKUP($H$3:$H$300, 'Pay (2)'!$D$2:$AJ$288,31,0),"")
<strike></strike>
 
Last edited:
Upvote 0
=IFERROR(VLOOKUP($H$3:$H$300, Formulas!$B$2:$Z$288,18,0),"") This works

How do I add this to the one above without getting error? #value
+IFERROR(VLOOKUP($H$3:$H$300, 'Pay (2)'!$D$2:$AJ$288,31,0),"")
<strike></strike>

You need to lookup one value only, not a range of cells.
 
Upvote 0

Forum statistics

Threads
1,214,924
Messages
6,122,293
Members
449,077
Latest member
Rkmenon

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top