Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否可以实现以下目标:
单元格 F4:=IF(C4>=F3 && C4<M3) = TRUE
=IF(C4>=F3 && C4<M3) = TRUE
当返回 True 时,我将有条件地用背景颜色格式化单元格。
我只是不确定如何编写公式。
请试试=AND(C4>=F3,C4<M3)
=AND(C4>=F3,C4<M3)