Code: Select all
put the dgDataOfLine[1] of group "my.grid" into aTemp
put "13/12/03" into aTemp["Date"]
set the dgDataOfLine[1] of group "my.grid" to aTemp
Can I update that one cell directly with one line of code?
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
put the dgDataOfLine[1] of group "my.grid" into aTemp
put "13/12/03" into aTemp["Date"]
set the dgDataOfLine[1] of group "my.grid" to aTemp
No, your script is the only solution.townsend wrote:Can I update that one cell directly with one line of code?