Code
-------------------
Function vCP(v1 As Variant, v2 As Variant) As Variant
vCP = Array(v1(2) * v2(3) - v1(3) * v2(2), _
v1(3) * v2(1) - v1(1) * v2(3), _
v1(1) * v2(2) - v1(2) * v2(1))
End Function
-------------------
Returns a 1x3 variant containing the cross product of the two 3-elemen
row or column vectors.
Example usage:
=Cross(A1:C1,A2:C2)
Must be array-entered.
Kind regards