我一直在搜索很多内容,以查找类似containsMixedTypes
的东西,以及它在创建数据透视表中的用处,但是除了Microsoft类型定义{之外,我还找不到其他东西{ {3}}。
以下属性的定义是什么?
<complexType name="CT_SharedItems">
<attribute name="containsSemiMixedTypes" type="xsd:boolean" use="optional" default="true"/>
<attribute name="containsNonDate" type="xsd:boolean" use="optional" default="true"/>
<attribute name="containsDate" type="xsd:boolean" use="optional" default="false"/>
<attribute name="containsString" type="xsd:boolean" use="optional" default="true"/>
<attribute name="containsBlank" type="xsd:boolean" use="optional" default="false"/>
<attribute name="containsMixedTypes" type="xsd:boolean" use="optional" default="false"/>
<attribute name="containsNumber" type="xsd:boolean" use="optional" default="false"/>
<attribute name="containsInteger" type="xsd:boolean" use="optional" default="false"/>
<attribute name="minValue" type="xsd:double" use="optional"/>
<attribute name="maxValue" type="xsd:double" use="optional"/>
<attribute name="minDate" type="xsd:dateTime" use="optional"/>
<attribute name="maxDate" type="xsd:dateTime" use="optional"/>
<attribute name="count" type="xsd:unsignedInt" use="optional"/>
<attribute name="longText" type="xsd:boolean" use="optional" default="false"/>
</complexType>
有些是显而易见的,例如minValue
,但是有些却是longText
或containsMixedTypes
或containsSemiMixedTypes
,但我找不到很多信息。例如,为什么在使用数据透视表时了解Excel中的字段是否为longText
(或意味着什么?)有用?