@timjnixon ,
This can be done with a Table Split, once an additional column that acounts for the number of tools used for that step is created.
The table is attached. The formula and Split script are embedded in the table and cane be found below
Split script embedded in the table. Of coursethis can be done with the UI Table>Split
Current Data Table() << Split(
Split By( :Step ),
Split( :Tool ),
Group( :Wafer, :step count ),
Remaining Columns( Drop All ),
Sort by Column Property
)
The resulting table will look like this
If this is not what you want you can also split by step and count
Data Table( "WaferStepSplit" ) << Split(
Split By( :Step, :step count ),
Split( :Tool ),
Group( :Wafer ),
Sort by Column Property
)
And this creates a table like the one below