I have two tables (A and B) that are related through the following four columns:
TECHNOLOGY - LAYER - YEAR - WORKWEEK
YEAR and WORKWEEK are calculated columns in both of the tables.
I have a column (WAFCOUNT) in table A that I want to insert into table B based off of those four related columns.
I've tried Insert->Columns, but it won't allow me to join the YEAR and WORKWEEK columns. I know this will work if I freeze them, but I'm trying not to do that so the tables don't become embedded.
It's my goal to keep this library item as dynamic as possible.
Here's a data sample for table A.
TECHNOLOGY LAYER YEAR WORKWEEK WAFCOUNT
XV-15 A 2016 1 23
XV-15 A 2016 2 14
XV-15 B 2016 2 49
XV-20 A 2016 1 7
XV-20 B 2016 1 19
Here's a data sample for table B.
TECHNOLOGY LAYER YEAR WORKWEEK
XV-20 A 2016 1
XV-20 B 2016 1
XV-15 A 2016 1
XV-15 A 2016 2
XV-15 B 2016 2