Start with: |
Finish with: |
A | B | C | D | E | F | G | |
1 | Dan | 949-633-9951 | Home | New 1 |
Amanda | =vlookup(E1,A1:C1,3,0) | |
2 | Edith | 949-633-9952 | Cell | Who knew | =vlookup($E$1,$A1:C$1,COLUMN(C$1),False) | =vlookup($E$1,$A1:D$1,COLUMN(D$1),False) | |
3 | Amanda | 949-633-9953 | Mobile | So what | |||
4 | Patrick | 949-633-9954 | Land Line | I care | |||
5 | Bella | 949-633-9955 | Twilight Zone | I dont |
="Phone: " &Vlookup(C1,A1:B5,2,False) - - - This formula is in Cell D1
A | B | C | D | |
1 | Dan | 949-633-9951 | Edith | Phone: 949-633-3448 |
2 | Edith | 949-633-9952 | ||
3 | Amanda | 949-633-9953 | ||
4 | Patrick | 949-633-9954 | ||
5 | Bells | 949-633-9955 |
A | B | C | |
1 | This line has spaces in front and at the end | =Trim(A1) fixes the spaces | =Trim(Clean(A1)) |
2 | This line has spaces in front and a line break |
=Clean(A1) fixes the line break | will fix both of these problems. |
3 |
=MID(A3, SEARCH("Lot",A3) +4, SEARCH("Lot",A3,SEARCH("Lot",A3)+1) - SEARCH("Lot",A3) - 4)
Transpose a range. Highlight a range and copy. Right click on another cell and paste Transpose.
We want the numbers in Row 10 (the transposed numbers) to change if the number in column B1:B7 change.