Transposing a data table with multiple columns for same label
Hello!
I have a data table with multiple wafers, the tools they pass at a certain step. Sometimes a wafer may hit multiple tools at the same step. I am losing toolsets using:
TrSWC = SWC << Transpose(
columns( :Column ),
Transpose selected rows only( 1 ),
By( :Wafer ),
Label( :Label ),
Output Table( "Transpose_Table" )
);
where SWC=
WaferLabelColumn1X A1XB1ZC
TrSWC =
WaferLabelXZ1ColumnBC
...