OriginalPostID-150052
Discussion posts and replies are publicly visible
I am trying to replace a grid column with another column that has updated values like this -
1. a!save (local!temp, UpdateArray (ri!grid.Col1, {1, 3, 5}, "A") updates the elements 1, 3, 5 with "A" and returns just the Col1 array in local!temp with updated values.
2. How do I replace grid.Col1 with local!temp?
a!save(ri!grid.Col1, local!temp) doesn't work as expected. It replaces every element of ri!grid.Col1 with the entire array in local!temp!!!
Thoughts?