-
Notifications
You must be signed in to change notification settings - Fork 0
Get data from spreadsheet
Warning: If the cells in the google table are not filled with data, as in the example below, then when accessing the cell by address it will not match the address in the google table, since transferring information, the site api ignores empty cells (but the lines remain unchanged, even if all its cells are empty)
First you need to get the desired saved spreadsheet
var spreadsheet = GoogleDocConnector.GetSpreadsheet("{ID}");
Also, if you need from this class, you can get the absolute web url for the spreadsheet. string url = GoogleDocConnector.GetSpreadsheetWebUrl("{ID}");
There are 2 ways to get the sheet you need, here they are:
- Use methods
+ Gets spreadsheet sheet by it's id.
var sheet = spreadsheet.GetSheet(500028786);
+ Gets first spreadsheet sheet by it's name.
sheet = spreadsheet.GetSheet("Sheet1");
Also you can check if this sheet is there
+ Returns `true` if spreadsheet contains a sheet with specified id, otherwise `false`.
bool checkSheetId = spreadsheet.GetSheet(500028786);
+ Returns `true` if spreadsheet contains a sheet with the name, otherwise `false`.
bool checkSheetName = spreadsheet.GetSheet("Sheet1");
- The second way is to get a list of sheets
var sheets = spreadsheet.Sheets
and work with it yourselfvar sh = sheets.First();
or smth else
When you find the sheet you want, then you can get any cell that is filled and store there
- Use methods
+ Get sell by name.
var cell = spreadsheet.GetCell("B5");
+ Gets cell from specified row & col. Indexs starts from 0
var cell1 = spreadsheet.GetSheet(0, 2); // C1
- The second way is to get a list of Rows
var rows= sheet.Sheets.Rows
and take the desired cell from the desired row
If you need to get cells or values from the required columns or rows, then use the following methods
Row
Returns all the cells in the row. Row index. Index starts from 0
List<Cell> lc = spreadsheet.GetRow(0);
Returns all the cells converted values in the row. See CellValue.GetValue for more info.
List<int> lc = spreadsheet.GetRowValues<int>(3);
Column
Returns all the cells in the row. Column index. Index starts from 0
List<Cell> lc = spreadsheet.GetColumn(0);
Returns all the cells in the column by name of the column
List<Cell> lc = spreadsheet.GetColumn("C");
Returns all the cells converted values in the row. See CellValue.GetValue for more info.
List<string> lc = spreadsheet.GetColumnValues<string>(3);
List<string> lc = spreadsheet.GetColumnValues<string>("C");