I've been racking my brain on this for a while and I can't figure this out. I have two worksheets. WS1 (LIST) uses VLOOKUP to pull pricing over from WS2 (Cobra-Import) One of the columns in WS2 is the unit quantity column (E), however, instead of numbers, the system that sends these out uses letters. I need to somehow convert those letters to a numerical value to be used on the LIST worksheet.
For the UNIT QTY column on the LIST worksheet, I am using this formula:
- Column H has the UPC that will find the match on the Cobra worksheet and assign the appropriate value from column E.
As of right now, the formula is doing exactly what it's supposed to do, which is pulling in what is in Column E of the Cobra worksheet. Those values are either E, C, or M depending on the item. I need those values to be replaced with:
E: 1
C: 100
M: 1000
Trying to figure out some kind of "If this, then that" type of formula so it assigns the appropriate numerical value.
In another column of the LIST worksheet, I am also using a formula to calculate the material price per unit, which needs the UNIT QTY to be in numerical form unless there is a way to calculate E, C, or M in this column. Here is the formula:
- Column J is UPC 1 and Column N is UPC two. K and O is the Unit Quantity for the respective UPC. The reason for two UPCs is that some items we include another item in the quoted price.
If anyone has any ideas, it will be greatly appreciated!
For the UNIT QTY column on the LIST worksheet, I am using this formula:
Excel Formula:
=IFERROR(VLOOKUP(H3,'Cobra-Import'!A:L,5,FALSE),0)
As of right now, the formula is doing exactly what it's supposed to do, which is pulling in what is in Column E of the Cobra worksheet. Those values are either E, C, or M depending on the item. I need those values to be replaced with:
E: 1
C: 100
M: 1000
Trying to figure out some kind of "If this, then that" type of formula so it assigns the appropriate numerical value.
In another column of the LIST worksheet, I am also using a formula to calculate the material price per unit, which needs the UNIT QTY to be in numerical form unless there is a way to calculate E, C, or M in this column. Here is the formula:
Excel Formula:
=((J3/K3)+(N3/O3))
If anyone has any ideas, it will be greatly appreciated!