Fórmula para referenciar um valor de célula que contém texto e reter a formatação de referências de célula

0

Eu tenho um monte de células contendo texto. O texto nessas células tem vários tamanhos e estilos de fonte. Eu preciso para replicar essas células em uma ordem diferente mais abaixo na planilha e se eu fizer alterações nas células originais eu preciso das células que a fonte das células originais para realizar as alterações, incluindo a formatação. Eu sei que posso fazer uma célula de cada vez, mas certamente há uma maneira melhor?

EG Células Originais

A1: Inicialização - Renda, capa de aço

A2: Sapato - Velco, Azul

A3: Meias - Joelho alto, preto

Células abaixo

A301: = A1, formatado exatamente da mesma forma que A1

A302: = A3, formatado exatamente como A3

etc.

Alguma sugestão?

    
por LeftyDan 22.05.2016 / 04:00

1 resposta

0

Então, o que você está realmente procurando é a formatação condicional (ou assim parece)

Aqui está um trecho da Microsoft sobre como isso acontece. Veja abaixo o exemplo ou o exemplo completo, veja o link abaixo.

link

enter image description here

BlockquoteCreate conditional formatting rules with formula

For example, let’s say you track your dental patients’ birthdays to see whose >is coming up and then mark them as having received a Happy Birthday greeting from you.

In this worksheet, we see the information we want by using conditional formatting, driven by two rules that each contain a formula. The first rule, in column A, formats future birthdays, and the rule in column C formats cells as soon as “Y” is entered, indicating that the birthday greeting has been sent.

Sample conditional formatting in Excel

To create the first rule:

Select cells A2 through A7. Do this by dragging from A2 to A7.

Then, click Home > Conditional Formatting > New Rule.

In the New Formatting Rule dialog box, click Use a formula to determine which cells to format.

Under Format values where this formula is true, type the formula: =A2>TODAY()

The formula uses the TODAY function to see if the dates in column A are greater than today (in the future). If so, the cells are formatted.

Click Format.

In the Color box, select Red. In the Font Style box, select Bold.

Click OK until the dialog boxes are closed.

The formatting is applied to column A.

To create the second rule:

Select cells C2 through C7.

Repeat steps 2 through 4 above, and enter this formula: =C2="Y"

The formula tests to see if the cells in column C contain “Y” (the quotation marks around the Y tell Excel that this is text). If so, the cells are formatted.

In the Color box, select White. In the Font Style box, select Bold.

Click the Fill tab and select Green.

The formatting is applied to column C.

    
por 22.05.2016 / 05:49