#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

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
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,214,643
Messages
6,120,702
Members
448,980
Latest member
CarlosWin

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