Excel Table: matching an user name to an user key
up vote
0
down vote
favorite
In my Excel File, I have a list of user names and each and one of them have their unique user key.
On one sheet, I have all the user names and keys in 2 different columns as follows:
Column B Column C
User Key1 User Name1
User Key2 User Name2
On another sheet, I have certain information that has been performed by an user. But instead of having the user name, I actually have the user key.
I would like to have the user name under the action and not the user key. Is there a formula or a trick so that I can perform this ?
I am using Microsoft Excel 2013.
microsoft-excel microsoft
New contributor
add a comment |
up vote
0
down vote
favorite
In my Excel File, I have a list of user names and each and one of them have their unique user key.
On one sheet, I have all the user names and keys in 2 different columns as follows:
Column B Column C
User Key1 User Name1
User Key2 User Name2
On another sheet, I have certain information that has been performed by an user. But instead of having the user name, I actually have the user key.
I would like to have the user name under the action and not the user key. Is there a formula or a trick so that I can perform this ?
I am using Microsoft Excel 2013.
microsoft-excel microsoft
New contributor
VLOOKUP function can help you: support.office.com/en-us/article/…
– Lee
Nov 22 at 9:00
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
In my Excel File, I have a list of user names and each and one of them have their unique user key.
On one sheet, I have all the user names and keys in 2 different columns as follows:
Column B Column C
User Key1 User Name1
User Key2 User Name2
On another sheet, I have certain information that has been performed by an user. But instead of having the user name, I actually have the user key.
I would like to have the user name under the action and not the user key. Is there a formula or a trick so that I can perform this ?
I am using Microsoft Excel 2013.
microsoft-excel microsoft
New contributor
In my Excel File, I have a list of user names and each and one of them have their unique user key.
On one sheet, I have all the user names and keys in 2 different columns as follows:
Column B Column C
User Key1 User Name1
User Key2 User Name2
On another sheet, I have certain information that has been performed by an user. But instead of having the user name, I actually have the user key.
I would like to have the user name under the action and not the user key. Is there a formula or a trick so that I can perform this ?
I am using Microsoft Excel 2013.
microsoft-excel microsoft
microsoft-excel microsoft
New contributor
New contributor
edited Nov 21 at 10:22
jcbermu
15.5k24354
15.5k24354
New contributor
asked Nov 21 at 10:04
Iuliana Burgi
1
1
New contributor
New contributor
VLOOKUP function can help you: support.office.com/en-us/article/…
– Lee
Nov 22 at 9:00
add a comment |
VLOOKUP function can help you: support.office.com/en-us/article/…
– Lee
Nov 22 at 9:00
VLOOKUP function can help you: support.office.com/en-us/article/…
– Lee
Nov 22 at 9:00
VLOOKUP function can help you: support.office.com/en-us/article/…
– Lee
Nov 22 at 9:00
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
In the first sheet you have to sort by key (by column B) and then in the other sheet you can apply a Vlookup formula like this:
=VLOOKUP (value, table, col_index, [range_lookup])
value = a reference to the key for example: =C2
table = the sheet of keys 'Sheet1'(B1:C100)
col_index= The column where is the data you want, in this case is 2
range_lookup = Put it to FALSE
More information about vlookup
here
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
In the first sheet you have to sort by key (by column B) and then in the other sheet you can apply a Vlookup formula like this:
=VLOOKUP (value, table, col_index, [range_lookup])
value = a reference to the key for example: =C2
table = the sheet of keys 'Sheet1'(B1:C100)
col_index= The column where is the data you want, in this case is 2
range_lookup = Put it to FALSE
More information about vlookup
here
add a comment |
up vote
0
down vote
In the first sheet you have to sort by key (by column B) and then in the other sheet you can apply a Vlookup formula like this:
=VLOOKUP (value, table, col_index, [range_lookup])
value = a reference to the key for example: =C2
table = the sheet of keys 'Sheet1'(B1:C100)
col_index= The column where is the data you want, in this case is 2
range_lookup = Put it to FALSE
More information about vlookup
here
add a comment |
up vote
0
down vote
up vote
0
down vote
In the first sheet you have to sort by key (by column B) and then in the other sheet you can apply a Vlookup formula like this:
=VLOOKUP (value, table, col_index, [range_lookup])
value = a reference to the key for example: =C2
table = the sheet of keys 'Sheet1'(B1:C100)
col_index= The column where is the data you want, in this case is 2
range_lookup = Put it to FALSE
More information about vlookup
here
In the first sheet you have to sort by key (by column B) and then in the other sheet you can apply a Vlookup formula like this:
=VLOOKUP (value, table, col_index, [range_lookup])
value = a reference to the key for example: =C2
table = the sheet of keys 'Sheet1'(B1:C100)
col_index= The column where is the data you want, in this case is 2
range_lookup = Put it to FALSE
More information about vlookup
here
answered Nov 21 at 10:27
jcbermu
15.5k24354
15.5k24354
add a comment |
add a comment |
Iuliana Burgi is a new contributor. Be nice, and check out our Code of Conduct.
Iuliana Burgi is a new contributor. Be nice, and check out our Code of Conduct.
Iuliana Burgi is a new contributor. Be nice, and check out our Code of Conduct.
Iuliana Burgi is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1377231%2fexcel-table-matching-an-user-name-to-an-user-key%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
VLOOKUP function can help you: support.office.com/en-us/article/…
– Lee
Nov 22 at 9:00