문제

I have this formula:

=IF($C7="Y",INDIRECT("'"&$A7&"'!D$12"),0)

But I want to make the D in D$12 draggable. I've tried adding & but it's not working.

The A7 portion is draggable, which I want.

Help greatly appreciated.

도움이 되었습니까?

해결책

Try to use following formula

=IF($C7="Y",INDIRECT("'" & $A7 & "'!" & CELL("address",D$12)),0)
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top