Excel, filling in cell values automatically
Solved/Closed
as79
-
Aug 16, 2010 at 03:51 AM
venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 - Aug 16, 2010 at 11:02 PM
venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 - Aug 16, 2010 at 11:02 PM
Related:
- Excel, filling in cell values automatically
- Transfer data from one excel worksheet to another automatically - Guide
- Download automatically while roaming - Guide
- Number to words in excel - Guide
- Gif in excel - Guide
- Marksheet in excel - Guide
2 responses
venkat1926
Posts
1863
Registration date
Sunday June 14, 2009
Status
Contributor
Last seen
August 7, 2021
811
Aug 16, 2010 at 06:31 AM
Aug 16, 2010 at 06:31 AM
I give you small sample data. try this on sample data and you can modify
sheet 1 contains data from A1 to D5
first name last name address phone no.
a s sssss 123
a d ddddd 234
s d ffffffff 345
f g gggggg 678
sheet 2 contains data from A1 to B3
first name last name
a d
f g
in the second sheet in C2 copy this formula
=INDEX(Sheet1!C$2:C$5,MATCH(1,((Sheet1!$A$2:$A$5=A2)*(Sheet1!$B$2:$B$5=B2)),1))
INVOKE THIS FORMULA WITH CONTROL+SHIFT+ENTER
copy C2 down and to right.
you get the results like this
first name last name address phoneno.
a d ddddd 678
f g gggggg 678
Hope you can modify to suit you.
sheet 1 contains data from A1 to D5
first name last name address phone no.
a s sssss 123
a d ddddd 234
s d ffffffff 345
f g gggggg 678
sheet 2 contains data from A1 to B3
first name last name
a d
f g
in the second sheet in C2 copy this formula
=INDEX(Sheet1!C$2:C$5,MATCH(1,((Sheet1!$A$2:$A$5=A2)*(Sheet1!$B$2:$B$5=B2)),1))
INVOKE THIS FORMULA WITH CONTROL+SHIFT+ENTER
copy C2 down and to right.
you get the results like this
first name last name address phoneno.
a d ddddd 678
f g gggggg 678
Hope you can modify to suit you.
venkat1926
Posts
1863
Registration date
Sunday June 14, 2009
Status
Contributor
Last seen
August 7, 2021
811
Aug 16, 2010 at 11:02 PM
Aug 16, 2010 at 11:02 PM
you are welcome.
Aug 16, 2010 at 07:57 PM
=INDEX(Sheet1!C$2:C$5,MATCH(1, 0, 1))
Aug 16, 2010 at 08:08 PM
Thank you so much!!! :)