ok, then step by step we'll get there
Which of those columns holds the Unique number for the row? I'd guess
it's 'G.O.#' but i wouldn't know - we need to know in which column
values would never duplicate - would be the 'ID column' for each
record. What kind of values it would topically hold?
You need to make sure that the 'ID column' is the first column in the
workbook - then you can use vlookup formula. If it's not first column,
you can use 'index' formula.
Let's try with Vlookup and see if it works:
I assumed this structure in your '1st sheet' (i dropped most of the
columns to keep it simple):
G.O.# Consignee
Address
2009-XXX-J632-0002 ABC my
Address
then in your Letter sheet,
- in a cell 'A1' (e.g.) you can just type/copy in the 'G.O.#' that you
need for the specific letter manually
- in a cell that needs to hold 'Consignee' type this formula:
=VLOOKUP(A1,Sheet2!$A$1:$C$4,2,FALSE)
- in a cell that needs to hold 'Address' type this formula:
=VLOOKUP(A1,Sheet2!$A$1:$C$4,3,FALSE)
you'll see that whenever you change value in A1, the other values also
change and are being pulled from the '1st sheet'.
All the references can be changed, the 'manual typing of the 'g.o.#'
can be replaced with a drop-down, another 'non-duplicate' column can
be chosen but before that i need to know if i'm on the right track.
So, is this something towards what you're after?