I use the following formula to condense data from source sheet to destination sheet with the "distinct" feature possibly combined with an OR function. Something like
=Index(Distinct(OR({FLOWER UID}), Number@row, ({SHAKE UID}), Number@row))
or
=Index(Distinct(OR({FLOWER UID}, {SHAKE UID}), Number@row))
Source sheet with two different columns containing ID's I'd like pulled in to the destination sheet
Destination sheet pulling in all 4 distinct numbers from two different columns from source sheet. @ rows are created in destination sheet. One with the FLOWER UID and one with the SHAKE UID
I tried this formula, but I'm probably way off base. Is it even possible?
______________________________________________________________________________
Once DISTINCT UID is inside the destination sheet, I'd like to use a regular INDEX(MATCH) to pull in the corresponding "HARVEST BATCH NAME" from the source sheet. That will require another OR function, to pull it in from one of the other columns in the source sheet. Basically each harvest batch will be pulled in twice. Once with the FLOWER ID and once with the SHAKE ID. Two distinct rows per harvest batch rather than one. I hope that makes sense.
Thank-you,
Sarah