Forum Discussion
IF Functions & VLOOKUP Help needed
Hi everyone,
I'm trying to revamp something and I need some assistance. I have an excel file 'productivity tracker' (I did not create the original) where on 'RAW' I have all my raw information.
I've got an IF Equation where if column N (Tracking Type) equals 'Self-Reported Time' then it will calculate the the self-reported processing time and all is good. What I NEED to figure out, is to have an equation where it does AND reads Column "O" and "P" (Service Level 1 & 2) then does a VLOOKUP on the 'Expectations' tab and reads the expectations in minutes for Service Level 1 & 2.
So basically: If it is a Self-Reported Time - then it just calculates the processing time * task volume - easy peezy, but if it a 'Salesforce Cases' - then Column "U" (Resources) reads Service Level 1 & 2, and then looks up the expectations in minutes.
I've attached the file because I understand that my description is impossible to understand without the file.
Can anyone assist please?
That could be
=IF([@[Tracking Type]]="Self-Reported Time",[@[Processing Time]], INDEX(Shared_Services_Expectations[Expectations (Hours)], MATCH([@[Service Level 1]]&[@[Service Level 2]], Shared_Services_Expectations[Category Level 1]&Shared_Services_Expectations[Category Level 2], 0)))*[@[Service Count]](in U2)
3 Replies
- SergeiBaklanDiamond Contributor
That could be
=IF([@[Tracking Type]]="Self-Reported Time",[@[Processing Time]], INDEX(Shared_Services_Expectations[Expectations (Hours)], MATCH([@[Service Level 1]]&[@[Service Level 2]], Shared_Services_Expectations[Category Level 1]&Shared_Services_Expectations[Category Level 2], 0)))*[@[Service Count]](in U2)
- NeilKlosterBrass Contributor
This worked perfectly!! Thank you!!
I may reach out as I continue to navigate this, but thank you again - this helped get me over a large hurdle!
- SergeiBaklanDiamond Contributor
Glad it helped, you are welcome