I have a row with a cost, item type and a "tags" columns. I want to be able to find the total cost of all rows containing a certain "tag". I tried using VLOOKUP but I keep on getting a $0.00 return.
Example Row Setup:
PART NUMBER - COST - TAGS - MANU ID - WEIGHT
0001025-SVR - 25.99 - JP, CABLES, PVC - 17.4
0A06422-SVR - 14.27 - SOLENOID, COPPER - 4.6
ZZZ4244-XUM - 25047.22 - PLAT, JP, HEADER, RACTIVE - 2488.25
Looking for JP Tag. Should return: 25073.21, which is the total of the first and last row. VLOOKUP("JP",A2:D4,2) is what I have tried, along with the filter function but still cannot seem to get it to work correctly.