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.
我有一个带有计算尺寸的图表
它包含 4 个可能的值 A、B、C 或 D
但是在我的条形图中,我只希望它包含 B 和 C
我试过了:
=MATCH(CATEGORY, 'B','C',)
但这只是给他们编号。
使用IF条件可以通过以下方式实现:
IF
if(MATCH(CATEGORY, 'B','C'),CATEGORY)