The below line of code is throwing an error
var FillDownRange = bp.getRange(2, 6, lr-1);
Error Message
Exception: The number of rows in the range must be at least 1.
Why would I be receiving this error message?
Here is the full function:
function ProcessBlueprint() {
//Formula: What is the top query for the URL?
bp.getRange("F2").setFormula("=IFERROR(VLOOKUP(C2,GSC!$A$2:$F,2,false),)");
var FillDownRange = bp.getRange(2, 6, lr-1);
bp.getRange("F2").copyTo(FillDownRange);
}