Excel VBA checkbox and Google Forms check box

fenrisn1

New Member
Joined
Sep 28, 2022
Messages
4
Office Version
  1. 365
  2. 2021
  3. 2019
Platform
  1. Windows
Hello, I am trying to build an VBA interface through excel where the filled in answers are also being processed in the google form (so basically the questions or the fields online are on the vba interface). I have managed to send the text box answers to the google docs file but I am struggling with the checkboxes that I have. Is there anyone with experience on vba check boxes and google forms checkboxes? The code below is without the check boxes.

VBA Code:
Dim SendLink As String, StartLink As String, EndLink As String, HeaderName As String, SendID As String
Dim ReportedBy As String, Desk As String, License As String, Material As String, TroubleSolving As String
Dim TicketInfo As MSXML2.ServerXMLHTTP60
HeaderName = "Content-Type"
SendID = "application/x-www-form-urlencoded; charset=utf-8"
'Get Form  Details
ReportedBy = SubmitTicketForm.SenderName.Value 'Reported By Name
Desk = SubmitTicketForm.Desk.Value 'Desk
License = SubmitTicketForm.License.Value 'Reported License
Material = SubmitTicketForm.Material.Value  'SKU

StartLink = "https://docs.google.com/forms/d/e/ -Remaining part of the Link"
    EndLink = "&entry.341133=" & ReportedBy & "&entry.1033118495=" & Desk & "&entry.1456399398=" & License & "&entry.2071487927=" & Material & "&entry.422813657=" & TroubleSolving & "&submit=Submit"
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top