EXCEL 2010 formatação condicional de várias cores e datas

0

Estou tentando definir várias células para permanecerem verdes quando a data estiver dentro de 120 dias da data atual, amarela entre 121 e 180 dias e vermelha quando a data for de 181 dias ou mais. Também precisaria mudar para frente e para trás quando novas datas forem inseridas.

    
por user600109 01.06.2016 / 03:46

1 resposta

1

Selecione suas células (data),

Use Conditional Formatting
New Rules
Use a formula to determine which cell to format
Format values where this Formula is True
write the following:
=(Today()-A1)<=120
Format Green
Repeat the above instructions and write the second formula:
=And((Today()-A1)>=121,(Today()-A1)<=180)
and Format Yellow
Repeat again the above instructions and write the third formula:
=(Today()-A1)>=181
and Format Red
A1 is the starting cell where is your date, Today() is the current Date in Excel
The cells will color automatically depending of the date written

    
por 01.06.2016 / 09:55