I have a CSV file uploaded to a Google Drive folder. Its column A has different names of people. Each name has its own google sheet. I need each name(their data) to be imported to their corresponding google sheet.
If the source data is a google sheet, I can do it like this(see below). But, I have zero idea how to do it if my source data is a csv file:
function myFunction() {
var ss = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Testname");
var lr = ss.getLastRow();
for (i=2; i<=lr; i++) {
var conditionRange = ss.getRange(i,1).getValue();
if (conditionRange == "John") {
// All rows with John name will be imported to John's googlesheet
