medium strength question - vlookup, etc

mmenashe

New Member
Joined
Feb 15, 2011
Messages
23
Alright, so im making an excel sheet to track the measurements for my company, Im attaching it here at:
http://www.2shared.com/document/1FdLvFh1/mattsexcelproblem.html


Although here is a more basic explanation

I have a manually entered value for each entry, lets say the first one is "500"

Following that, I have multiple drop downs on a list such as:

-used, new, broken
-red, green, blue
-car, boat, plane

**at the bottom there is the concatenate function to join them all together**

so the person just uses the drop down to choose a combo that could lead to something like -- new green boat OR broken red car
and before they did that, they manually entered a value for that case, lets say 500

now on the following page, there is an assigned value for each so for example:

new green car | 25
used red plane | 95
broken blue car | -15

Now Im using the vlookup function so that on a cell, it references the concatenated result, and (hopefully) returns that value

on top of that, I add the beginning value to it, so 500 is added against the number

lets say they broken blue car at -15, + 500 = value of 485

well, I just cant seem to get this to work, although Im going back and forth on my sheet so much!!!

any help or advise is appreciated

below are the formulas for those who dont want to look at the page

Code:
=CONCATENATE(C26," ",C25," ",C24)
Code:
=VLOOKUP(DATA!B30,P10:Q52,2)+DATA!C19
now for whatever reason, it always seems to only go on whats at cell Q22 on that worksheet, is is possible that the concatenate function doesnt work all that well with vlookup?


for those who are looking at my page, Im only using OP1 in columns C15:C29 to combine all the data and the final version which is concatenated is on cell C30 on the first page called DATA

the second page is cutcard2 and its B3 whereupon Im stuck

thanks for any help on this, Ive been stuck for such a while now
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
sorry I have not regisered for 2share.com so I could not download the file

hower I assumed after using validation list etc you arrive at a data like this from A1 to B3

<table width="277" border="0" cellpadding="0" cellspacing="0"><col style="width: 160pt;" width="213"> <col style="width: 48pt;" width="64"> <tbody><tr style="height: 12.75pt;" height="17"> <td style="height: 12.75pt; width: 160pt;" height="17" width="213">new green car </td> <td style="width: 48pt;" width="64" align="right">25</td> </tr> <tr style="height: 12.75pt;" height="17"> <td style="height: 12.75pt;" height="17">used red plane </td> <td align="right">95</td> </tr> <tr style="height: 12.75pt;" height="17"> <td style="height: 12.75pt;" height="17">broken blue car </td> <td align="right">-15</td> </tr> </tbody></table>

in another location e.g. in A18 and B18 you have the following data

<table width="277" border="0" cellpadding="0" cellspacing="0"><col width="213"><col width="64"><tbody><tr height="17"> <td style="height: 12.75pt; width: 160pt;" height="17" width="213">broken blue car </td> <td style="width: 48pt;" width="64" align="right">500</td> </tr></tbody></table>now in C18 type this formula

=VLOOKUP(A18,$A$1:$B$3,2,FALSE)+B18
you will get 485

is this what you want?
 
Last edited:
Upvote 0

Forum statistics

Threads
1,224,599
Messages
6,179,827
Members
452,946
Latest member
JoseDavid

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