Excel Calc链

时间:2018-08-27 16:48:42

标签: excel xml excel-vba

第一个问题:r显然给出了范围,“ i”代表什么?

第二,似乎该链按我将公式输入到单元格中的时间对计算进行了排序?似乎很尴尬,calcChain会计算出说“ I1”,“ I4”,“ G13”而不是“ I10”。

似乎calcChain在计算I13的直接先例$ G $ 13,$ E $ 13,$ C $ 13,$ A $ 13之前先计算I13!

这是我的calcChain:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<calcChain
    xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main">
    <c r="I1" i="1" l="1"/>
    <c r="I4" i="1"/>
    <c r="I7" i="1"/>
    <c r="I10" i="1"/>
    <c r="I13" i="1"/>
    <c r="G13" i="1"/>
    <c r="E13" i="1"/>
    <c r="C13" i="1"/>
    <c r="A13" i="1"/>
    <c r="A7" i="1"/>
    <c r="E10" i="1"/>
    <c r="C10" i="1"/>
    <c r="A10" i="1"/>
    <c r="G10" i="1"/>
    <c r="C4" i="1"/>
    <c r="C7" i="1" s="1"/>
    <c r="C1" i="1"/>
    <c r="E1" i="1" s="1"/>
    <c r="G1" i="1" s="1"/>
    <c r="A4" i="1"/>
    <c r="E4" i="1" l="1"/>
    <c r="G4" i="1" s="1"/>
    <c r="E7" i="1"/>
    <c r="G7" i="1"/>
</calcChain>

这是我的sheet1.xml:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<worksheet
    xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main"
    xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="x14ac"
    xmlns:x14ac="http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac">
    <dimension ref="A1:I13"/>
    <sheetViews>
        <sheetView tabSelected="1" workbookViewId="0">
            <selection activeCell="H14" sqref="H14"/>
        </sheetView>
    </sheetViews>
    <sheetFormatPr defaultRowHeight="15" x14ac:dyDescent="0.25"/>
    <sheetData>
        <row r="1" spans="1:9" x14ac:dyDescent="0.25">
            <c r="A1">
                <v>3</v>
            </c>
            <c r="C1">
                <f>A1*5</f>
                <v>15</v>
            </c>
            <c r="E1">
                <f>C1*2</f>
                <v>30</v>
            </c>
            <c r="G1">
                <f>E1*3</f>
                <v>90</v>
            </c>
            <c r="I1">
                <f>G1*2</f>
                <v>180</v>
            </c>
        </row>
        <row r="4" spans="1:9" x14ac:dyDescent="0.25">
            <c r="A4">
                <f>A1*5</f>
                <v>15</v>
            </c>
            <c r="C4">
                <f>A4</f>
                <v>15</v>
            </c>
            <c r="E4">
                <f>C4*2</f>
                <v>30</v>
            </c>
            <c r="G4">
                <f>E4*3</f>
                <v>90</v>
            </c>
            <c r="I4">
                <f>G4*2</f>
                <v>180</v>
            </c>
        </row>
        <row r="7" spans="1:9" x14ac:dyDescent="0.25">
            <c r="A7">
                <f>A4*2</f>
                <v>30</v>
            </c>
            <c r="C7">
                <f>C4*2</f>
                <v>30</v>
            </c>
            <c r="E7">
                <f>C7+A7</f>
                <v>60</v>
            </c>
            <c r="G7">
                <f>E7*3</f>
                <v>180</v>
            </c>
            <c r="I7">
                <f>G7*2</f>
                <v>360</v>
            </c>
        </row>
        <row r="10" spans="1:9" x14ac:dyDescent="0.25">
            <c r="A10">
                <f>A7*3</f>
                <v>90</v>
            </c>
            <c r="C10">
                <f>C7*3</f>
                <v>90</v>
            </c>
            <c r="E10">
                <f>E7*3</f>
                <v>180</v>
            </c>
            <c r="G10">
                <f>E10+C10+A10</f>
                <v>360</v>
            </c>
            <c r="I10">
                <f>G10*2</f>
                <v>720</v>
            </c>
        </row>
        <row r="13" spans="1:9" x14ac:dyDescent="0.25">
            <c r="A13">
                <f>A10*2</f>
                <v>180</v>
            </c>
            <c r="C13">
                <f>C10*2</f>
                <v>180</v>
            </c>
            <c r="E13">
                <f>E10*2</f>
                <v>360</v>
            </c>
            <c r="G13">
                <f>G10*2</f>
                <v>720</v>
            </c>
            <c r="I13">
                <f>SUM(G13,E13,C13,A13)</f>
                <v>1440</v>
            </c>
        </row>
    </sheetData>
    <pageMargins left="0.7" right="0.7" top="0.75" bottom="0.75" header="0.3" footer="0.3"/>
</worksheet>  

数据:

0 个答案:

没有答案