Good Day All !
I have an excel question and not sure how to get it to work properly. I have tried both VLookup and Index but can't seem to get it to work. To give a brief description of whats going on here is a break down of what I am trying to do:
Sheet 1:
Sheet 2:
So this may look confusing but it isn't really. I am trying to get the actual value of what is typed in on sheet 1 column a (Year) and also whats selected in column e (Type) and put the value in column d (%).
In sheet 2 the data is under all the columns, so if you typed in sheet 2016 and selected fabric it would give you 5 on sheet 1.
I have tried these two formulas:
=INDEX(Sheet2!A4:E29,MATCH(A2&E2,Sheet2!A4:E29,0))
or
=VLOOKUP(A2,Sheet2!A4:E29,FALSE)&VLOOKUP(E2,Sheet2!A4:J29,FALSE)
Can someone please assist?
Thank you!
I have an excel question and not sure how to get it to work properly. I have tried both VLookup and Index but can't seem to get it to work. To give a brief description of whats going on here is a break down of what I am trying to do:
Sheet 1:
Code:
Column A Column B Column C Column D Column E
Year Desc Cost % Type (drop down list from columns in sheet2)
2016 test 12.00 5 Fabric
Sheet 2:
Code:
Column A Column B Column C Column D Column E
Year Mulch Rock Fabric Sand
2015 1 2 3 4
2016 3 4 5 6
So this may look confusing but it isn't really. I am trying to get the actual value of what is typed in on sheet 1 column a (Year) and also whats selected in column e (Type) and put the value in column d (%).
In sheet 2 the data is under all the columns, so if you typed in sheet 2016 and selected fabric it would give you 5 on sheet 1.
I have tried these two formulas:
=INDEX(Sheet2!A4:E29,MATCH(A2&E2,Sheet2!A4:E29,0))
or
=VLOOKUP(A2,Sheet2!A4:E29,FALSE)&VLOOKUP(E2,Sheet2!A4:J29,FALSE)
Can someone please assist?
Thank you!