If noone comes up with a google sheets formula solution, then you can simply use Utilities.parseCsv(csv):
function getBigCsv() {
const sheet = SpreadsheetApp.getActive().getSheetByName('Arkusz2');
const url = 'https://drive.google.com/uc?export=download&id=19MBtGO-O7PV4NNojLAcxm-Pg8ZwjFXI8';
const csv = UrlFetchApp.fetch(url);
const data = Utilities.parseCsv(csv);
sheet.getRange(1, 1, data.length, data[0].length).setValues(data);
}
and if you want the data to be updated, you can set up a time-trigger to refresh the data.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…