I have the following table
tab:([]exec_location_1:`PA1`DNS`DNS;quantity_s9:8 40 20;mf_quantity_s17:123 123 4;eq_quantity_s17:10 20 30)
and I need to update it with a new column quantity which is based on the following mapping:
orderQuantityMap:`NEW`XRM`PA1`PA3`PA4`PA5`XRT`XRB`MF1`DNS!(`quantity_s9`quantity_s9`quantity_s9`quantity_s9`quantity_s9`quantity_s9`quantity_s9`quantity_s9`mf_quantity_s17`eq_quantity_s17);
Im guessing this needs to be done as a functional update hence tried the following:
![tab;();0b;(enlist `quantity)!enlist(orderQuantityMap;`exec_location_1)]
which gives me the following result:

How do I update this so that the actual value of the column is pulled in to the quantity col?