excel - What is the meaning of t="array" for a formula element -
currently analyzing sheet1.xml
file extracted excel 2007 .xlsx file. find following entry:
<c r="d2" s="3"><f t="array" ref="d2">a2:a3+b2:c3</f><v>0.30000000000000004</v></c>
what meaning of t="array" ref="d2"
property in <f>
element?
thanks
alan
ecma-376 part 1 section 18.3.1.40 on <f>
(formula) says:
array (array formula)
array formula. array formula single formula, applied across range of 1 or more cells. array formula can return multiple results 1 single calculation, results spanning cells in contained
the ref
range array formula applies. in case 1 cell.
Comments
Post a Comment