Hi,
I am trying to update my worksheet via API with a variety of Strings,
Dates, Decimal numbers (longs). I convert all toString etc and insert as per
Developers guide..
newEntry.getCustomElements().setValueLocal("mytagDate", "20/11/1990");
newEntry.getCustomElements().setValueLocal("mytageNumber1", "123456.765432");
ListEntry insertedRow = service.insert(listFeedUrl, newEntry);
The difficulty is the decimal numbers all have 4 to 7 digits after the
decimal point and they never appear in the spreadsheet. The insert appears
to work correctly from the API perspective, no exception is thrown, and all
non numeric data appears in each row, but the numeric data does not.
Any ideas?
Tx
Will