excel function INDIRECT()

ぐ巨炮叔叔 提交于 2019-12-11 13:03:51

问题


I have this excel function INDIRECT($D$2&"!A:A") which returns me a real number.

What I don't get is the "!A:A". $D$2& refers to worksheet name, so what kind of mathematical formula does it do to the column A of this worksheet ?


回答1:


The formula A:A returns the value in column A that's on the same row as the formula. So, if your formula is in B6, then INDIRECT($D$2&"!A:A") will return A6 from the sheet referenced in D2



来源:https://stackoverflow.com/questions/18584417/excel-function-indirect

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!