Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Dear experts,
I have a table which column A is for account numbers of new transactions to be input from time to time. Column E listed all existing account numbers. So, my question is, if I input/import an account number 12345 in A2, 45678 in A3 etc. and 12345 is a new account number and 45678 is our existing account number, then D2 will remain blank and D3 will show "Y". Is it possible? If yes, please advise how to do it. Thanks in advance. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi
Place this formula in D2: =IF(ISERROR(LOOKUP(A2;$E$1:$E$2));"";"Y") Change range $E$1:$E$2 in the formula to refere to the list of existing account numbers, then copy the formula down to the range needed. Regards, Per "Freshman" skrev i meddelelsen ... Dear experts, I have a table which column A is for account numbers of new transactions to be input from time to time. Column E listed all existing account numbers. So, my question is, if I input/import an account number 12345 in A2, 45678 in A3 etc. and 12345 is a new account number and 45678 is our existing account number, then D2 will remain blank and D3 will show "Y". Is it possible? If yes, please advise how to do it. Thanks in advance. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks Per. Thanks for your help.
"Per Jessen" wrote: Hi Place this formula in D2: =IF(ISERROR(LOOKUP(A2;$E$1:$E$2));"";"Y") Change range $E$1:$E$2 in the formula to refere to the list of existing account numbers, then copy the formula down to the range needed. Regards, Per "Freshman" skrev i meddelelsen ... Dear experts, I have a table which column A is for account numbers of new transactions to be input from time to time. Column E listed all existing account numbers. So, my question is, if I input/import an account number 12345 in A2, 45678 in A3 etc. and 12345 is a new account number and 45678 is our existing account number, then D2 will remain blank and D3 will show "Y". Is it possible? If yes, please advise how to do it. Thanks in advance. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Dear Freshman
If I'm understanding your questing correctly and column E contains the numbers of all existing accounts the following might be useful: =IF( NOT( ISNA(MATCH(A2,$E$1:$E$100,0))), "Y", "") Place this formula in column D "Freshman" wrote in message ... Dear experts, I have a table which column A is for account numbers of new transactions to be input from time to time. Column E listed all existing account numbers. So, my question is, if I input/import an account number 12345 in A2, 45678 in A3 etc. and 12345 is a new account number and 45678 is our existing account number, then D2 will remain blank and D3 will show "Y". Is it possible? If yes, please advise how to do it. Thanks in advance. |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Dear Freshman
If I'm understanding your questing correctly and column E contains the numbers of all existing accounts the following might be useful: =IF( NOT( ISNA(MATCH(A2,$E$1:$E$100,0))), "Y", "") Place this formula in column D "Freshman" wrote in message ... Dear experts, I have a table which column A is for account numbers of new transactions to be input from time to time. Column E listed all existing account numbers. So, my question is, if I input/import an account number 12345 in A2, 45678 in A3 etc. and 12345 is a new account number and 45678 is our existing account number, then D2 will remain blank and D3 will show "Y". Is it possible? If yes, please advise how to do it. Thanks in advance. |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
I think it's worth mentioning that Mac's approach will work regardless of what order column E is in, while Per's will require column E to be sorted in an ascending order. Also, it looks like someone has switched Per's ';' and ',' keys... either that or my regional settings are up the creek! :) Cheers, Ivan. On Apr 1, 8:15*pm, "Mac" wrote: Dear Freshman If I'm understanding your questing correctly and column E contains the numbers of all existing accounts the following might be useful: =IF( NOT( ISNA(MATCH(A2,$E$1:$E$100,0))), "Y", "") Place this formula in column D "Freshman" wrote in message ... Dear experts, I have a table which column A is for account numbers of new transactions to be input from time to time. Column E listed all existing account numbers.. So, my question is, if I input/import an account number 12345 in A2, 45678 in A3 etc. and 12345 is a new account number and 45678 is our existing account number, then D2 will remain blank and D3 will show "Y". Is it possible? If yes, please advise how to do it. Thanks in advance.- Hide quoted text - - Show quoted text - |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Ivan
My regional setteings are Danish, so it works where I am ;-) Snip... Also, it looks like someone has switched Per's ';' and ',' keys... either that or my regional settings are up the creek! :) Best regards, Per |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Per,
Lol... My apologies :) Ivan. On Apr 1, 10:56*pm, "Per Jessen" wrote: Hi Ivan My regional setteings are Danish, so it works where I am ;-) Snip... Also, it looks like someone has switched Per's ';' and ',' keys... either that or my regional settings are up the creek! :) Best regards, Per |
#9
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Mac,
Your function is working well. Thanks a million. "Mac" wrote: Dear Freshman If I'm understanding your questing correctly and column E contains the numbers of all existing accounts the following might be useful: =IF( NOT( ISNA(MATCH(A2,$E$1:$E$100,0))), "Y", "") Place this formula in column D "Freshman" wrote in message ... Dear experts, I have a table which column A is for account numbers of new transactions to be input from time to time. Column E listed all existing account numbers. So, my question is, if I input/import an account number 12345 in A2, 45678 in A3 etc. and 12345 is a new account number and 45678 is our existing account number, then D2 will remain blank and D3 will show "Y". Is it possible? If yes, please advise how to do it. Thanks in advance. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Matching Records in two tables | Excel Worksheet Functions | |||
Find matching records | Excel Discussion (Misc queries) | |||
Matching records and posting them separately. | Excel Worksheet Functions | |||
Matching records | Excel Discussion (Misc queries) | |||
Find Matching Records in Two Worksheets | Excel Discussion (Misc queries) |