Excel Cross Sheet Lookup Formula

前端 未结 1 1145
失恋的感觉
失恋的感觉 2021-01-25 06:51

I am reaching my limits with Excel at the moment and could use a few pointers. I have a list of users and the teams they are in as well as an event number. I want to be able t

相关标签:
1条回答
  • 2021-01-25 06:58

    Try this formula:

    =IF(VLOOKUP(A2,Sheet1!$A$2:$E$4,3,FALSE)>0,"Event1",
    IF(VLOOKUP(A2,Sheet1!$A$2:$E$4,4,FALSE)>0,"Event2","Event3"))
    
    0 讨论(0)
提交回复
热议问题