I've created a saved search that has two formulanu...
# suitescript
d
I've created a saved search that has two formulanumeric columns. When trying to get results, how do I differentiate between the two columns, since they both have the same name? I've given then a label. Is it possible to retrieve the column, by the label?
b
alternatively, you can give your formula column a name like formulanumeric_1 and use that name with Result.getValue(options)
s
As battk suggested, just using the alternate method for
result.getValue(column)
is the easiest way in my opinion, especially if you built the search in code as well.