Excel 数组

在excel中,根据构成元素的不同,可以把数组分为常量数组单元格区域数组。 

常量数组可以包含数组,文本,逻辑值和错误值等,而且可以同时包含不同的数据类型。它用{}将构成数组的常量括起来,个元素之间分别用分号;和逗号,来间隔行和列。

单元格区域数组则是通过对一组连续的单元格区域进行引用而得到的数组.

----


数组公式( array formulas)Array formulas are often referred to as CSE (Ctrl+Shift+Enter) formulas because instead of just pressing Enter, you press Ctrl+Shift+Enter to complete the formula.

https://support.office.com/en-us/article/Guidelines-and-examples-of-array-formulas-7d94a64e-3ff3-4686-9372-ecfd5caa57c7?omkt=en-SG&ui=en-US&rs=en-SG&ad=SG


eg.: =sum(row(1:3))  ,  =sum({1,2,3}*A1:C1)  ,  not CSE formula: =sum({1,2,3})

你可能感兴趣的:(excel)