I am trying to use the following custom function DrivingKms
with ARRAYFORMULA
so that it recursively calculates the distance down the specified columns.
How can I update it so that it works with ARRAYFORMULA
?
function DrivingKms(origin, destination) {
return DrivingMeters(origin, destination)/1000;
}
function DrivingMeters(origin, destination) {
var directions = Maps.newDirectionFinder()
.setOrigin(origin)
.setDestination(destination)
.getDirections();
return directions.routes[0].legs[0].distance.value;
}
When I call the function in an ARRAYFORMULA
, from all the way down, it only converts the first two location points (F2 and M2).
={"DrivingKms";ARRAYFORMULA(IF(ISBLANK(A2:A),"",drivingkms(F2:F, M2:M)))}
I believe your goal as follows.
DrivingKms
with={"DrivingKms";ARRAYFORMULA(IF(ISBLANK(A2:A),"",drivingkms(F2:F, M2:M)))}
.For this, I would like to propose the following modified scripts.
Modification points:
DrivingMeters
is correct. But whenDrivingKms
is used with={"DrivingKms";ARRAYFORMULA(IF(ISBLANK(A2:A),"",drivingkms(F2:F, M2:M)))}
, only the 1st element is used. I think that this is the reason of your issue.drivingkms(F2:F, M2:M)
is used,F2:F
andM2:M
are the 2 dimensional array, respectively. In your case, it is required to considere this.Pattern 1:
In this pattern, the result values are retrieved in the loop. Please modify
DrivingKms
as follows.Modified script:
Pattern 2:
In this pattern, from
recursively calculates the distance down the specified columns.
, the result values are retrieved in the recursive loop. For this, at first,values
for using atcalc
is created. Please modifyDrivingKms
as follows.Modified script:
Note:
References: