Wow trying to put a title to this was hard. So here is the issue and I have been racking my brain to figure it out and I am at a loss. I have a productivity report and I need to look up how many contacts the rep did from the previous day on a different tab. This Report is continually added to so I have to concatenate the name + date to make sure I am pulling the correct data for that date.
The problem is my initial lookup value for the name is their full name and the tab with the data only has their first name and last initial. I know a Right/Left function could help but the concatenate function messes all of that up.
A5: The name of the rep
B1: The Date
Right now I have been manually finishing the last name of each rep but it is becoming too time consuming. Below is the formula I have been using when manually filling in the last name.
=iferror(vlookup((concatenate(A5,$B$1)),Intercom!A:E,4,False),"")
The problem is my initial lookup value for the name is their full name and the tab with the data only has their first name and last initial. I know a Right/Left function could help but the concatenate function messes all of that up.
A5: The name of the rep
B1: The Date
Right now I have been manually finishing the last name of each rep but it is becoming too time consuming. Below is the formula I have been using when manually filling in the last name.
=iferror(vlookup((concatenate(A5,$B$1)),Intercom!A:E,4,False),"")