Excel - Array formula with gap -
currently have formula working fine array formula, determine maximum differences between values of 2 arrays:
{=max(abs(d3:n3-aw3:bg3))}
i trying exclude 1 pair of values middle of both arrays (cells l3
, be3
respectively). not work:
{=max(abs(d3:k3;m3:n3-aw3:bd3;bf3:bg3))}
i getting "too many arguments"error; error make sense abs
function's perspective - semicolon argument separator. how can 1 work gaps in arrays (i.e. - non-adjacent cells) ?
instead of using ';' can use ':'. below formula work you.
{=max(abs(d3:k3-aw3:bd3), abs(m3:n3-bf3:bg3))}
Comments
Post a Comment