Sign in to join the conversation:
Hi All,
How can you add a space between 2 vlookup functions?
Here's the formula: =VLOOKUP(Alias247, {Pilot Data Base Range 4}, 3, false) + VLOOKUP(Alias247, {Pilot Data Base Range 4}, 2, false)
This will show First_NameLast_Name.
Thanks!
Try this:
=VLOOKUP(Alias247, {Pilot Data Base Range 4}, 3, false) + " " + VLOOKUP(Alias247, {Pilot Data Base Range 4}, 2, false)
That works! Thank you!
You're welcome. Glad I could help out.
Hello all. I've searched for a solution but have not found one. I am using an index match formula to return an "employee name" based on a "project name" match. The formula returns no match…but there should be. Scenario: I have a sheet which lists projects including: project #, project name, super, etc. I used a formula on…
Hi folks, I'm struggling with a formula that should be simple. When the formula is this, it works great for one of two Types. The second type pulls the wrong Billing Annual Fee. =IFERROR(INDEX(COLLECT({Billing Annual Fee}, {Segment}, Segment@row, {Billing Ownership}, [Billing Ownership]@row), 1), 0) When I modify the…
I have a sheet that has 20 cells that are dates Due and Done for 10 categories. I have an Overdue Week column that I want to show "Yes" if a Due date is prior to current week. I managed to do that, but once one date leads to a "Yes" it never changes even if the task is completed and marked in the corresponding Done cell.…