Can Sumproduct be modified to return text?

hbgray2

New Member
Joined
Aug 14, 2009
Messages
45
Can the sumproduct formula be modified to return text? Here is my formula:
AM5 = part number
BOM!AM5:AM300 = list of part numbers (unsorted random data)
BOM!AN5:AN300 = list of part names
=SUMPRODUCT(--(AM5=BOM!AM5:AM300),BOM!AN5:AN300)
returns 0

=SUMPRODUCT(--(AM5=BOM!AM5:AM300))
returns 1 verifying there is only 1 match...
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
This is pretty much what Vlookup or index/match is for...

=VLOOKUP(AM5,BOM!AM5:AN300,2,FALSE)

I prefer Index/Match

=INDEX(BOM!AN5:AN300,MATCH(AM5,BOM!AM5:AM300,0))


Hope that helps.
 
Upvote 0
Can the sumproduct formula be modified to return text? Here is my formula:
AM5 = part number
BOM!AM5:AM300 = list of part numbers (unsorted random data)
BOM!AN5:AN300 = list of part names
=SUMPRODUCT(--(AM5=BOM!AM5:AM300),BOM!AN5:AN300)
returns 0

=SUMPRODUCT(--(AM5=BOM!AM5:AM300))
returns 1 verifying there is only 1 match...
SUMPRODUCT only returns numeric values (or errors).
 
Upvote 0
This is pretty much what Vlookup or index/match is for...

=VLOOKUP(AM5,BOM!AM5:AN300,2,FALSE)

I prefer Index/Match

=INDEX(BOM!AN5:AN300,MATCH(AM5,BOM!AM5:AM300,0))


Hope that helps.

Thanks for the help. The Index/Match formula did the trick. I forgot about that one and was unsuccessfully trying the Vlookup
 
Upvote 0

Forum statistics

Threads
1,223,246
Messages
6,170,996
Members
452,373
Latest member
TimReeks

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