> Combine 2 rows if name is same in Column B & C on both
>
[quoted text clipped - 15 lines]
> Thanks
> kerns.wal...@epa.gov
If it is possible to enter a new column after column B in your sheet 2
then you
could enter following formula to your NEW sheet2!column C:
=A1 & " " & B1
and copy it down.
then in your sheet1!column F you could use this formula:
=vlookup(A1 & " " & B1,sheet2!C:H,5,false)
and in your sheet1!column G:
=vlookup(A1 & " " & B1,sheet2!C:H,6,false)
maybe you need to change the numbers for Col_Index, because
I have no Idea how your sheet is built, but otherwise it should work.
hth
Carlo