josearistud
New Member
- Joined
- Dec 6, 2021
- Messages
- 2
- Office Version
- 365
- Platform
- Windows
Hello
I need help with the following. I'm using Index / Match to retrieve values from Column C. The criteria o retrieve those values are:
1. Values must have one of these statuses in Column A: Assigned, Working, Waiting, Transferred or Returned.
2. Values must have this status in Column L: Master Ticket
I need also the ability to tell the formula to continue with the second, third, fourth, values and so on. This is my issue here. The formula below retreives the value correctly based on criteria mentioned above, but I can't modify to continue with subsequent values after the first one has been retreieved.
Any help greatly appreciated.
I need help with the following. I'm using Index / Match to retrieve values from Column C. The criteria o retrieve those values are:
1. Values must have one of these statuses in Column A: Assigned, Working, Waiting, Transferred or Returned.
2. Values must have this status in Column L: Master Ticket
I need also the ability to tell the formula to continue with the second, third, fourth, values and so on. This is my issue here. The formula below retreives the value correctly based on criteria mentioned above, but I can't modify to continue with subsequent values after the first one has been retreieved.
Any help greatly appreciated.
Excel Formula:
=INDEX('Ticket Tracking Sheet'!$C7:$C20006,MATCH(1,('Ticket Tracking Sheet'!$A7:$A20006="Assigned")*('Ticket Tracking Sheet'!$A7:$A20006="Working")*('Ticket Tracking Sheet'!$A7:$A20006="Waiting")*('Ticket Tracking Sheet'!$A7:$A20006="Transferred")*('Ticket Tracking Sheet'!$A7:$A20006="Returned")+('Ticket Tracking Sheet'!$L7:$L20006="Master Ticket"),0)