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.
在 excel 中,我需要公式,比如我将在 B1 单元格的表 1 中输入数据,它必须在表 2 中输入这些数据,条件是如果 A1 为空白,则输入数据,否则在 A2 单元格中输入。请任何人告诉我是否有任何公式可用于此。
在 Sheet2 中:
B1 =IF(Sheet1!A1="","",Sheet1!B1) A2 =IF(Sheet1!A1<>"","",Sheet1!B1)
对你起作用吗?