Hi
I have to use a concentrate formula to join to words together to get a unique criteria to look up.
That worked no problem.
I am now in doing my lookup and have tried all of the following in Sheet 1
=VLOOKUP(E2,Week1,5, FALSE)
=VLOOKUP(E2+0,Week1,5, FALSE)
=VLOOKUP(CONCATENATE(C2,B2),Week1,5,FALSE)
Sheet 1 Example:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Row/Column Nunber/Letter
[/TD]
[TD]A
[/TD]
[TD]B
[/TD]
[TD]C
[/TD]
[TD]D
[/TD]
[TD]E
[/TD]
[TD]F
[/TD]
[TD]G
[/TD]
[TD]H
[/TD]
[/TR]
[TR]
[TD]1
[/TD]
[TD]ID
[/TD]
[TD]Field
[/TD]
[TD]Product
[/TD]
[TD]Type
[/TD]
[TD]Product - Type
[/TD]
[TD]Target
[/TD]
[TD]Week 1
[/TD]
[TD]Week 2
[/TD]
[/TR]
[TR]
[TD]2
[/TD]
[TD]1
[/TD]
[TD]Fruit
[/TD]
[TD]Banana
[/TD]
[TD]Ordered
[/TD]
[TD]=CONCATENATE(C3, " - ",D3)
[/TD]
[TD]100
[/TD]
[TD]=VLOOKUP(E2,Week 1,5,FALSE)
[/TD]
[TD]=VLOOKUP(E2,Week2,5,FALSE)
[/TD]
[/TR]
[TR]
[TD]3
[/TD]
[TD]2
[/TD]
[TD]Vegetable
[/TD]
[TD]Cabbage
[/TD]
[TD]Delivered
[/TD]
[TD]=CONCATENATE(C4, " - ",D4)
[/TD]
[TD]200
[/TD]
[TD]=VLOOKUP(E3,Week 1,5, FALSE)
[/TD]
[TD]=VLOOKUP(E3,Week2,5,FALSE)
[/TD]
[/TR]
</tbody>[/TABLE]
WHERE:
*Week1 is a named range in another table
**E2 is a formula, see belowColumn C, D, E, this is text data)
=CONCATENATE(C2, " - ",D2)
***Week1 is B2:F344
***5 is the fifth column on the right of the range (Column F, this is numerical data)
****FALSE, as I need an exact result
Week 1 Sheet Example
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Row/Column Number/Letter
[/TD]
[TD]A
[/TD]
[TD]B
[/TD]
[TD]C
[/TD]
[TD]D
[/TD]
[TD]E
[/TD]
[TD]F
[/TD]
[/TR]
[TR]
[TD]1
[/TD]
[TD]ID
[/TD]
[TD]Field
[/TD]
[TD]Product
[/TD]
[TD]Type
[/TD]
[TD]Product - Type
[/TD]
[TD]Week 1
[/TD]
[/TR]
[TR]
[TD]2
[/TD]
[TD]1
[/TD]
[TD]Fruit
[/TD]
[TD]Banana
[/TD]
[TD]Ordered
[/TD]
[TD]=CONCATENATE(C3, " - ",D3)
[/TD]
[TD]=VLOOKUP(E2,Week1,5,FALSE)
[/TD]
[/TR]
[TR]
[TD]3
[/TD]
[TD]2
[/TD]
[TD]Vegetable
[/TD]
[TD]Cabbage
[/TD]
[TD]Delivered
[/TD]
[TD]=CONCATENATE(C4, " - ",D4)
[/TD]
[TD]=VLOOKUP(E2,Week1,5,FALSE)
[/TD]
[/TR]
</tbody>[/TABLE]
I keep on gettting a N/A result
After tying other options then searching forums I tried naming the range, I tried to name the text columns text and the number columns number but nothing has helped.
Any help would be appreciated.
Thanks
I have to use a concentrate formula to join to words together to get a unique criteria to look up.
That worked no problem.
I am now in doing my lookup and have tried all of the following in Sheet 1
=VLOOKUP(E2,Week1,5, FALSE)
=VLOOKUP(E2+0,Week1,5, FALSE)
=VLOOKUP(CONCATENATE(C2,B2),Week1,5,FALSE)
Sheet 1 Example:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Row/Column Nunber/Letter
[/TD]
[TD]A
[/TD]
[TD]B
[/TD]
[TD]C
[/TD]
[TD]D
[/TD]
[TD]E
[/TD]
[TD]F
[/TD]
[TD]G
[/TD]
[TD]H
[/TD]
[/TR]
[TR]
[TD]1
[/TD]
[TD]ID
[/TD]
[TD]Field
[/TD]
[TD]Product
[/TD]
[TD]Type
[/TD]
[TD]Product - Type
[/TD]
[TD]Target
[/TD]
[TD]Week 1
[/TD]
[TD]Week 2
[/TD]
[/TR]
[TR]
[TD]2
[/TD]
[TD]1
[/TD]
[TD]Fruit
[/TD]
[TD]Banana
[/TD]
[TD]Ordered
[/TD]
[TD]=CONCATENATE(C3, " - ",D3)
[/TD]
[TD]100
[/TD]
[TD]=VLOOKUP(E2,Week 1,5,FALSE)
[/TD]
[TD]=VLOOKUP(E2,Week2,5,FALSE)
[/TD]
[/TR]
[TR]
[TD]3
[/TD]
[TD]2
[/TD]
[TD]Vegetable
[/TD]
[TD]Cabbage
[/TD]
[TD]Delivered
[/TD]
[TD]=CONCATENATE(C4, " - ",D4)
[/TD]
[TD]200
[/TD]
[TD]=VLOOKUP(E3,Week 1,5, FALSE)
[/TD]
[TD]=VLOOKUP(E3,Week2,5,FALSE)
[/TD]
[/TR]
</tbody>[/TABLE]
WHERE:
*Week1 is a named range in another table
**E2 is a formula, see belowColumn C, D, E, this is text data)
=CONCATENATE(C2, " - ",D2)
***Week1 is B2:F344
***5 is the fifth column on the right of the range (Column F, this is numerical data)
****FALSE, as I need an exact result
Week 1 Sheet Example
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Row/Column Number/Letter
[/TD]
[TD]A
[/TD]
[TD]B
[/TD]
[TD]C
[/TD]
[TD]D
[/TD]
[TD]E
[/TD]
[TD]F
[/TD]
[/TR]
[TR]
[TD]1
[/TD]
[TD]ID
[/TD]
[TD]Field
[/TD]
[TD]Product
[/TD]
[TD]Type
[/TD]
[TD]Product - Type
[/TD]
[TD]Week 1
[/TD]
[/TR]
[TR]
[TD]2
[/TD]
[TD]1
[/TD]
[TD]Fruit
[/TD]
[TD]Banana
[/TD]
[TD]Ordered
[/TD]
[TD]=CONCATENATE(C3, " - ",D3)
[/TD]
[TD]=VLOOKUP(E2,Week1,5,FALSE)
[/TD]
[/TR]
[TR]
[TD]3
[/TD]
[TD]2
[/TD]
[TD]Vegetable
[/TD]
[TD]Cabbage
[/TD]
[TD]Delivered
[/TD]
[TD]=CONCATENATE(C4, " - ",D4)
[/TD]
[TD]=VLOOKUP(E2,Week1,5,FALSE)
[/TD]
[/TR]
</tbody>[/TABLE]
I keep on gettting a N/A result
After tying other options then searching forums I tried naming the range, I tried to name the text columns text and the number columns number but nothing has helped.
Any help would be appreciated.
Thanks