
Building 2 ChatGPT function to Google Sheets
- or -
Post a project like this200
£50(approx. $66)
- Posted:
- Proposals: 3
- Remote
- #4267437
- Awarded
Description
Experience Level: Entry
ChatGPT function to Google Sheets, you can do this by integrating OpenAI's GPT API into Google Sheets via Google Apps Script
1. To write questions/summaries based on copy inputted in certain sheets cells
2. To course latest publicaiotns based on figure name using
- to use function getLatestPublications(authorName) {
var url = 'https://api.scholar.org/publications/search?author=' + encodeURIComponent(authorName);
var response = UrlFetchApp.fetch(url);
var json = JSON.parse(response.getContentText());
var publications = [];
// Extract the titles of the latest 4 publications
for (var i = 0; i < Math.min(json.publications.length, 4); i++) {
publications.push(json.publications[i].title);
}
return publications;
}
1. To write questions/summaries based on copy inputted in certain sheets cells
2. To course latest publicaiotns based on figure name using
- to use function getLatestPublications(authorName) {
var url = 'https://api.scholar.org/publications/search?author=' + encodeURIComponent(authorName);
var response = UrlFetchApp.fetch(url);
var json = JSON.parse(response.getContentText());
var publications = [];
// Extract the titles of the latest 4 publications
for (var i = 0; i < Math.min(json.publications.length, 4); i++) {
publications.push(json.publications[i].title);
}
return publications;
}

Projects Completed
33
Freelancers worked with
30
Projects awarded
24%
Last project
28 Apr 2025
United Kingdom
Rachel's other projects
New Proposal
Login to your account and send a proposal now to get this project.
Log inClarification Board Ask a Question
-
There are no clarification messages.
We collect cookies to enable the proper functioning and security of our website, and to enhance your experience. By clicking on 'Accept All Cookies', you consent to the use of these cookies. You can change your 'Cookies Settings' at any time. For more information, please read ourCookie Policy
Cookie Settings
Accept All Cookies