简体   繁体   中英

Conditional formatting on Excel for a range of numbers

如果数字超出此范围(55-83),我使用条件格式将单元格颜色更改为红色,我的问题是我不希望单元格保持红色,直到我用正确的数字填充它为止。希望单元格保持清晰,直到我用错误的数字填充它为止。

You should be able to use the following formula in your conditional format:

=AND(CELL<>"",OR(CELL<55,CELL>83))

条件格式规则

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM