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.
我有这个公式:
=IF($C7="Y",INDIRECT("'"&$A7&"'!D$12"),0)
但我想让DinD$12可拖动。我试过添加&,但它不起作用。
D
D$12
&
该A7部分是可拖动的,这是我想要的。
A7
非常感谢帮助。
尝试使用以下公式
=IF($C7="Y",INDIRECT("'" & $A7 & "'!" & CELL("address",D$12)),0)