Qual seria o valor na célula A, se a célula B = 5 e a célula C = 7 [fechada]

0

Eu tenho uma grande tabela complicada que representa uma matriz, e estou fazendo multiplicações de matriz com ela.

Eu gostaria de poder dizer: E se o valor da célula de 2 ou 3 células particulares nesta planilha forem de um valor particular, então qual seria o valor da célula de outra célula em particular?

Isso me permitiria tratar minha planilha como uma função grande de várias saídas.

Isso é possível sem o VBA?

    
por user56834 13.03.2017 / 14:32

2 respostas

1

Realizando uma tentativa semi-selvagem com o seu problema:

A1 = (SE E (B1 = 5, C1 = 7), Equação para A1 com essas condições, A1 se essas condições não forem atendidas)

Sem mais detalhes, não posso dar mais nada

    
por 14.03.2017 / 22:57
-1

Isso é exatamente o que tabelas de dados são para.

In a cell on the worksheet, enter the formula that refers to the two input cells.

In the following example, in which the formula's starting values are entered in cells B3, B4, and B5, you type the formula =PMT(B3/12,B4,-B5) in cell C2.

Type one list of input values in the same column, below the formula.

In this case, type the different interest rates in cells C3, C4, and C5.

Enter the second list in the same row as the formula, to its right.

Type the loan terms (in months) in cells D2 and E2.

Select the range of cells that contains the formula (C2), both the row and column of values (C3:C5 and D2:E2), and the cells in which you want the calculated values (D3:E5).

In this case, select the range C2:E5.

On the Data tab, in the Data Tools group or Forecast group (in Excel 2016), click What-If Analysis, and then click Data Table.

In the Row input cell box, enter the reference to the input cell for the input values in the row. Type cell B4 in the Row input cell box.

In the Column input cell box, enter the reference to the input cell for the input values in the column. Type B3 in the Column input cell box.

Click OK.

    
por 13.03.2017 / 20:22