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.
我有一列用 1 和 0 编码的数据。有没有办法创建一个反转编码的列?所以如果A3 = 1,B3将为0。或者这是我需要手动完成的事情吗?
谢谢!
好吧,如果它是一个数字,那么这个公式:
=(A1-1)*-1
将工作。如果它们是字符串“0”和“1”,那么:
=IF(A1="0","1","0")
应该这样做。
你可以试试这样的
=ABS(A3-1)
(当然,并为每一行相应地调整“A3”地址)。