RJSIGKITS
Board Regular
- Joined
- Apr 15, 2013
- Messages
- 109
Hey guys.
I have a workbook that our users register client details, and create quotations with.
We are working to a more productive way of our users working, by offering them a 'fewer clicks' solution to their daily needs of the workbook, and I would like to be able to have the users click a 'Create appointment' button that opens a Google Calendar event, and autofills the fields with information that has already been entered on the workbook, in order to prevent the need to type in the same information multiple times.
I currently have this, which successfully opens a new Google calendar event:
The '& Range("c6").Value' is part of my attempt to make a start, but it does nothing...
I would need the Fields to be filled with cell data as follows:
TITLE = Cell J3
LOCATION = Cell K3
TIME = Cell L3
GUESTS = Cell M3
The user can still add data to some feilds that are impossible to autofill, but Any ideas on how we can autofill as many of these as possible would be greatly appreciated.
Thanks in advance
I have a workbook that our users register client details, and create quotations with.
We are working to a more productive way of our users working, by offering them a 'fewer clicks' solution to their daily needs of the workbook, and I would like to be able to have the users click a 'Create appointment' button that opens a Google Calendar event, and autofills the fields with information that has already been entered on the workbook, in order to prevent the need to type in the same information multiple times.
I currently have this, which successfully opens a new Google calendar event:
Code:
Private Sub AddActivity_Click()ActiveWorkbook.FollowHyperlink "https://calendar.google.com/calendar/r/eventedit?pli=1" & Range("c6").Value
End Sub
The '& Range("c6").Value' is part of my attempt to make a start, but it does nothing...
I would need the Fields to be filled with cell data as follows:
TITLE = Cell J3
LOCATION = Cell K3
TIME = Cell L3
GUESTS = Cell M3
The user can still add data to some feilds that are impossible to autofill, but Any ideas on how we can autofill as many of these as possible would be greatly appreciated.
Thanks in advance