Mr_Tib
10/13/2021, 2:24 PMsearchObj.run().each(function (result){
let colA = result.getValue('columnA');
let colB = result.getValue('columnB');
}
However, is it possible to store all columns in a single variable?, I tried, to no avail:
searchObj.run().each(function (result){
// I was expecting allRes to contain an object, each column as key with its respective value
let allRes = result.values;
}
battk
10/13/2021, 6:23 PMbattk
10/13/2021, 6:24 PMMr_Tib
10/13/2021, 6:25 PM