Reputation: 4061
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.
Upvotes: 1
Views: 147
Reputation: 35853
Try to use following formula
=IF($C7="Y",INDIRECT("'" & $A7 & "'!" & CELL("address",D$12)),0)
Upvotes: 3