Excel - Match, Lookup or Index

女生的网名这么多〃 提交于 2019-12-13 03:08:13

问题


am sure this is an easy question but getting confused between all the formulas- Lookup, Match, Index etc.

I have 2 sheets - SOW Actuals and RAW Project data.

In column N of SOW Actuals I have the values I am trying to find in cells A2:A60 of Raw Project data.
When the formula finds a value I want it to return the value from column G on the same row in Raw Project data.


回答1:


INDEX and MATCH are more efficient and flexible than VLOOKUP. In your case, try:

=INDEX('RAW Project Data'!$G$2:$G$60,MATCH('SOW Actuals'!$N1,'RAW Project Data'!$A$2:$A$60,0))


来源:https://stackoverflow.com/questions/50469552/excel-match-lookup-or-index

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