Update Table Matching Columns Based on List
I'm using this simple update function to update a table based on the column matching below
dt << Update(
With( dt_summary ),
Match Columns( :DIE = :DIE, :RU = :RU, :NAME = :NAME, :TEST = :TEST )
);
However, sometime the input table has DIE, RU, NAME or TEST columns missing, so I would like to update this column matching criteria depending on the input table. I tried several methods that didn'...