#Name? Error in cell by SUMing vLookUp

RapchikM

Board Regular
Joined
Oct 5, 2020
Messages
88
Office Version
  1. 2021
Platform
  1. Windows
Hello
I get #Name? Error in cell by SUMing vLookUp

I want to sum up values of column Range where in Range value 500 is displayed and want to sumup its 3rd column
in E14 i've typed Following formula
=SUM(vlookup,C14,J2:L15,3,0)

C14 = 500

Range From J2:L15
Cell J4 = 500 Cell L4 = 8
Cell J11 =500 Cell L11 = Empty
Cell J12 =500 Cell L12 = 20

want to sum up values of col L if in ColJ Value contained 500. To get value in E14 as 28

RapchikM
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
You cannot use vlookup for that try
Excel Formula:
=sumifs(L:L,J:J,500)
 
Upvote 0
Solution
Hi,

Also, using your cell reference:

Excel Formula:
=SUMIF(J4:J12,C14,L4:L12)
 
Upvote 0

Forum statistics

Threads
1,215,353
Messages
6,124,463
Members
449,163
Latest member
kshealy

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