ctjacobs2010
Board Regular
- Joined
- Dec 12, 2013
- Messages
- 56
I am wanting to have many ISBNs in column 1. In column 2, I want to be able to type the last 4 numbers of an isbn from the column one list and then have the whole ISBN show up in column 3.
Book1 | ||||||
---|---|---|---|---|---|---|
A | B | C | D | |||
1 | 1234567891234 | 1234 | 8086 | 1234567808086 | ||
2 | 1234567892345 | 2345 | ||||
3 | 1234567893456 | 3456 | ||||
4 | 1234567893456 | 3456 | ||||
5 | 1234567898796 | 8796 | ||||
6 | 1234567868343 | 8343 | ||||
7 | 1234567808086 | 8086 | ||||
8 | 1234567898934 | 8934 | ||||
9 | 1234567058763 | 8763 | ||||
10 | 1234567883248 | 3248 | ||||
11 | 1234506789324 | 9324 | ||||
12 | 1234560587238 | 7238 | ||||
13 | 1234568689728 | 9728 | ||||
14 | 1234567578577 | 8577 | ||||
15 | 1234577777777 | 7777 | ||||
16 | 1234500000000 | 0 | ||||
17 | 1234599999999 | 9999 | ||||
18 | 1234554545454 | 5454 | ||||
19 | 1234562528200 | 8200 | ||||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
D1 | =INDEX($A$1:$A$19,MATCH($C$1,$B$1:$B$19,0)) | |
B1 | =RIGHT($A1,4)+0 |
=ISNUMBER(MATCH($C$1,$B$1:$B$19,0))