I support one school in the Trust that used Bromcom and was finding it a bit tricky to get the data directly into Sheets. However, I've sorted this now and thought this might prove useful to someone. Step 1 - The Bromcom Report Write your report (or pick an existing one). Click Run Report and then select “Live Data Feed”. Copy the URL it gives you. Step 2 - Your user name and password to access the report You need the site ID which is the username. You also need your “User Access Key”. To get this click top right and “My account” and you will see a box with this in. Make a note of these. Step 3 - Setup the Google Sheet Make a Google Sheet that is going to receive the data. Click on “Tools” then Script and paste in this code: function populateSheetWithCSV(sheet, csvUrl, user, pw) { var resp = UrlFetchApp.fetch(csvUrl, { headers: { // use basic auth 'Authorization': 'Basic ' + Utilities.base64...