Walker_Ice
Board Regular
- Joined
- Oct 6, 2023
- Messages
- 50
- Office Version
- 2021
- Platform
- MacOS
Hi everyone,
I have a list of clients called "Client_Clientele". Another list named "Client_Phone" which holds all of their phone numbers associated with those clients. Another list named "Client_Email" which holds all of their emails as well.
I am trying to make a formula work, so that when I start typing a name that is already on the list, it automatically populates the phone numbers and emails. The problem is that when I type in a new name that is not on the list, it gives me the error "#REF". But I want it to stay empty if the name is not on the list "Client_Clientele". Can someone help me modify these formulas to work as desired?
Thank you in advance.
I have a list of clients called "Client_Clientele". Another list named "Client_Phone" which holds all of their phone numbers associated with those clients. Another list named "Client_Email" which holds all of their emails as well.
I am trying to make a formula work, so that when I start typing a name that is already on the list, it automatically populates the phone numbers and emails. The problem is that when I type in a new name that is not on the list, it gives me the error "#REF". But I want it to stay empty if the name is not on the list "Client_Clientele". Can someone help me modify these formulas to work as desired?
Thank you in advance.
TEsting_Excel_File.xlsx | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | I | J | K | L | M | |||
1 | Client Name | Phone # | Client Name | Phone # | |||||||||||
2 | XX | 687-000-0909 | XX@gmail.com | XX | 687-000-0909 | XX@gmail.com | |||||||||
3 | YY | 687-000-0910 | YY@gmail.com | YY | 687-000-0910 | YY@gmail.com | |||||||||
4 | LIME | 687-000-0911 | LIME@gmail.com | LIME | 687-000-0911 | LIME@gmail.com | |||||||||
5 | Yellow | 687-000-0912 | Yellow@gmail.com | Yellow | 687-000-0912 | Yellow@gmail.com | |||||||||
6 | Green | 687-000-0913 | Green@gmail.com | Green | 687-000-0913 | Green@gmail.com | |||||||||
7 | Blue | 687-000-0914 | Blue@gmail.com | Blue | 687-000-0914 | Blue@gmail.com | |||||||||
8 | Blue | #NAME? | |||||||||||||
9 | Yellow | #NAME? | |||||||||||||
10 | Green | #NAME? | |||||||||||||
11 | |||||||||||||||
12 | |||||||||||||||
13 | |||||||||||||||
Sheet7 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
B8:B10 | B8 | =IF(IFERROR(MATCH(A8, Client_clientele, 0), "")="", "", INDEX(Client_Phone, MATCH(A8, Client_clientele, 0), 1)) |
C8:C10 | C8 | =IF(A8<>"", INDEX(Client_Email, MATCH(A8, Client_clientele, 0)), "") |