Hi, I am developing an application where I read some columns and then write the output in another column. The problem is that whenever I write the output, it is being written in the cells after all columns end not from the beginning of the column. So i end up with something like the attached pic. Any ideas on how to begin writing from the beginning of the column?
tasks duration start a 1 b 2 c 3 d 4 1 3 5 9 I am using the java API and here is the code I use to write a new cell: ListEntry newEntry = new ListEntry(); newEntry.getCustomElements().setValueLocal(where, op); ListEntry insertedRow = myService.insert(listFeedurl, newEntry); where is the column header name and op is the output. Thanks
