I have this formula:
=IF(INDIRECT(“summary!a2″)=””,””,INDIRECT(“summary!a2”))
.. this will retrieve the value of the a2 cell in the summary sheet.
What i want to know is what can i do on this formula to allow the value a2 to change to a3/a4/a5 etc.. when dragged down the sheet .
Can anyone give me a hint here?
Thanks
Try:
=IF(INDIRECT("summary!a"&ROW(A2))="","",INDIRECT("summary!a"&ROW(A2)))– applicable for drag down)