to copy a cell's value to a column of a row click the low right corner of the highlighted
drag the cell dow the column or across the row
worksheet with column headers email, First name, and Last name
only email column filled out in format
<first name>.<lastname>@xyz.com
in the first data row enter the first and last names into their respective columns
go down the first name column entering the first name
when grayed out intellisense appears hitting enter will automatically fill the column
click on cell C2
use ribbon to navigate to Home > Fill > Flash Fill
select first few cells in column B
on Data tab click 'Text to Columns'
select Delimited and click next
under Delimiters only Comma should be selected
click next
click the general option
click destinationnbox and enter $E$2
click Finish
cell A9 contains 'A B C'
in cell B9 use the formula below
=LEFT(A9,FIND(" ",A9)-1)
cell B9 now contains the letter A
in cell C9 use the formula below
=RIGHT(A9,LEN(A9)-FIND(" ",A9))
cell C9 now contains "B C"
in cell D9 use the LEFT formula but the target cell is C9
=LEFT(C9,FIND(" ",C9)-1)
cell D9 contains the letter B
in cell D10 use the RIGHT formula but the target cell is C9
=RIGHT(C9,LEN(C9)-FIND(" ",C9))
the FIND function returns number representing a position in a string
only difference is where the extraction starts
=FIND(<character to find>,<targetCell>);
the LEFT and RIGHT functions return a substring from the target cell
=LEFT(<targetCell>,<number of characters to return>)
=RIGHT(<targetCell>,<number of characters to return>)
to sort a column click a cell in the column and click Home tab's Sort & Filter
button and select a sort
if the sheet has headers cliccustom sort and check the 'My data has headers' check
box
right-click a column header and Sort from the context menu
tables provide features and conveniences
click cell in data to become the table
to create table click Insert > Table, > OK
table grows as rows are added
can add columns by dragging table from lower right corner
- click the cell in the row which has the columns to be added
- press ALT+Equals
- press Enter
- the SUM formula gets filled by Excel
- click a cell in the table
- the Design tab opens
- click total rows
- a row will be added with the totals
- click the cell next to a total and click the down arrow
- can select different formula to get the cell's value