Sample code for 30+ languages & platforms
Visual Basic 6.0

Google Sheets - Create a New Spreadsheet

See more Google Sheets Examples

Demonstrates how to create a new and empty spreadsheet.

Chilkat Visual Basic 6.0 Downloads

Visual Basic 6.0
Dim success As Long
success = 0

' This example requires the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.

' This example uses a previously obtained access token having permission for the 
' Google Sheets scope.

' In this example, Get Google Sheets OAuth2 Access Token, the access
' token was saved to a JSON file.  This example fetches the access token from the file..
Dim jsonToken As New ChilkatJsonObject
success = jsonToken.LoadFile("qa_data/tokens/googleSheets.json")
If (jsonToken.HasMember("access_token") = 0) Then
    Debug.Print "No access token found."
    Exit Sub
End If

Dim http As New ChilkatHttp
http.AuthToken = jsonToken.StringOf("access_token")

' Create the following JSON:
' The JSON code can be generated using this online tool:  Generate JSON create code
' {
'   "sheets": [
'     {
'       "properties": {
'         "title": "Sample Tab"
'       }
'     }
'   ],
'   "properties": {
'     "title": "Create Spreadsheet using Sheets API v4"
'   }
' }

' This code generates the above JSON:
Dim json As New ChilkatJsonObject
success = json.UpdateString("sheets[0].properties.title","Sample Tab")
success = json.UpdateString("properties.title","Create Spreadsheet using Sheets API v4")

' Send the POST to create the new Google spreadsheet.
Dim resp As New ChilkatHttpResponse
success = http.HttpJson("POST","https://sheets.googleapis.com/v4/spreadsheets",json,"application/json",resp)
If (success = 0) Then
    Debug.Print http.LastErrorText
    Exit Sub
End If

Debug.Print "response status code = " & resp.StatusCode
Debug.Print "response JSON:"

success = json.Load(resp.BodyStr)
json.EmitCompact = 0
Debug.Print json.Emit()

' A sample response is shown below.
' To generate the parsing source code for a JSON response, paste
' the JSON into this online tool: Generate JSON parsing code

' {
'   "spreadsheetId": "1ueEQu3WDBkIAOUhzLnY4zr6JO5SrJx0dQ-YkQlUVYD0",
'   "properties": {
'     "title": "Create Spreadsheet using Sheets API v4",
'     "locale": "en_US",
'     "autoRecalc": "ON_CHANGE",
'     "timeZone": "Etc/GMT",
'     "defaultFormat": {
'       "backgroundColor": {
'         "red": 1,
'         "green": 1,
'         "blue": 1
'       },
'       "padding": {
'         "top": 2,
'         "right": 3,
'         "bottom": 2,
'         "left": 3
'       },
'       "verticalAlignment": "BOTTOM",
'       "wrapStrategy": "OVERFLOW_CELL",
'       "textFormat": {
'         "foregroundColor": {},
'         "fontFamily": "arial,sans,sans-serif",
'         "fontSize": 10,
'         "bold": false,
'         "italic": false,
'         "strikethrough": false,
'         "underline": false
'       }
'     }
'   },
'   "sheets": [
'     {
'       "properties": {
'         "sheetId": 1629642057,
'         "title": "Sample Tab",
'         "index": 0,
'         "sheetType": "GRID",
'         "gridProperties": {
'           "rowCount": 1000,
'           "columnCount": 26
'         }
'       }
'     }
'   ],
'   "spreadsheetUrl": "https://docs.google.com/spreadsheets/d/1ueEQu3WDBkIAOUhzLnY4zr6JO5SrJx0dQ-YkQlUVYD0/edit"
' }
' 

Dim i As Long
Dim count_i As Long

Dim spreadsheetId As String
spreadsheetId = json.StringOf("spreadsheetId")
Dim propertiesTitle As String
propertiesTitle = json.StringOf("properties.title")
Dim propertiesLocale As String
propertiesLocale = json.StringOf("properties.locale")
Dim propertiesAutoRecalc As String
propertiesAutoRecalc = json.StringOf("properties.autoRecalc")
Dim propertiesTimeZone As String
propertiesTimeZone = json.StringOf("properties.timeZone")
Dim propertiesDefaultFormatBackgroundColorRed As Long
propertiesDefaultFormatBackgroundColorRed = json.IntOf("properties.defaultFormat.backgroundColor.red")
Dim propertiesDefaultFormatBackgroundColorGreen As Long
propertiesDefaultFormatBackgroundColorGreen = json.IntOf("properties.defaultFormat.backgroundColor.green")
Dim propertiesDefaultFormatBackgroundColorBlue As Long
propertiesDefaultFormatBackgroundColorBlue = json.IntOf("properties.defaultFormat.backgroundColor.blue")
Dim propertiesDefaultFormatPaddingTop As Long
propertiesDefaultFormatPaddingTop = json.IntOf("properties.defaultFormat.padding.top")
Dim propertiesDefaultFormatPaddingRight As Long
propertiesDefaultFormatPaddingRight = json.IntOf("properties.defaultFormat.padding.right")
Dim propertiesDefaultFormatPaddingBottom As Long
propertiesDefaultFormatPaddingBottom = json.IntOf("properties.defaultFormat.padding.bottom")
Dim propertiesDefaultFormatPaddingLeft As Long
propertiesDefaultFormatPaddingLeft = json.IntOf("properties.defaultFormat.padding.left")
Dim propertiesDefaultFormatVerticalAlignment As String
propertiesDefaultFormatVerticalAlignment = json.StringOf("properties.defaultFormat.verticalAlignment")
Dim propertiesDefaultFormatWrapStrategy As String
propertiesDefaultFormatWrapStrategy = json.StringOf("properties.defaultFormat.wrapStrategy")
Dim propertiesDefaultFormatTextFormatFontFamily As String
propertiesDefaultFormatTextFormatFontFamily = json.StringOf("properties.defaultFormat.textFormat.fontFamily")
Dim propertiesDefaultFormatTextFormatFontSize As Long
propertiesDefaultFormatTextFormatFontSize = json.IntOf("properties.defaultFormat.textFormat.fontSize")
Dim propertiesDefaultFormatTextFormatBold As Long
propertiesDefaultFormatTextFormatBold = json.BoolOf("properties.defaultFormat.textFormat.bold")
Dim propertiesDefaultFormatTextFormatItalic As Long
propertiesDefaultFormatTextFormatItalic = json.BoolOf("properties.defaultFormat.textFormat.italic")
Dim propertiesDefaultFormatTextFormatStrikethrough As Long
propertiesDefaultFormatTextFormatStrikethrough = json.BoolOf("properties.defaultFormat.textFormat.strikethrough")
Dim propertiesDefaultFormatTextFormatUnderline As Long
propertiesDefaultFormatTextFormatUnderline = json.BoolOf("properties.defaultFormat.textFormat.underline")
Dim spreadsheetUrl As String
spreadsheetUrl = json.StringOf("spreadsheetUrl")
i = 0
count_i = json.SizeOfArray("sheets")
Do While (i < count_i)
    json.I = i
    Dim propertiesSheetId As Long
    propertiesSheetId = json.IntOf("sheets[i].properties.sheetId")
    propertiesTitle = json.StringOf("sheets[i].properties.title")
    Dim propertiesIndex As Long
    propertiesIndex = json.IntOf("sheets[i].properties.index")
    Dim propertiesSheetType As String
    propertiesSheetType = json.StringOf("sheets[i].properties.sheetType")
    Dim propertiesGridPropertiesRowCount As Long
    propertiesGridPropertiesRowCount = json.IntOf("sheets[i].properties.gridProperties.rowCount")
    Dim propertiesGridPropertiesColumnCount As Long
    propertiesGridPropertiesColumnCount = json.IntOf("sheets[i].properties.gridProperties.columnCount")
    i = i + 1
Loop