EXCEL
EXCEL
# BORDERS
We can highlight cell borders to display exclusivity
Predefined cell border
Remove cell border
Creating a custom cell border
Styling cell borders
Shortcut method to assign default border to cell is ‘CTRL + SHIFT + &’
# TEXT – FORMATTING AND STYLING
We can format n style data in a cell
Font Selection
Font Color
Font Style
Font Size
Indentation
# DATA VALIDATION
Data validation is used to make sure that users enter certain values into a
cell.
Data Validation is available in Data tab
Data validation consist of three parts: Input (set range for input),
Message (specify the message for input), Alert (specify alert for input)
# KEYBOARD SHORTCUT
To select the entire range, press ‘CTRL + a’ (if you press ‘CTRL + a’ one
more time Excel selects the entire sheet)
To copy the range, press ‘CTRL + c’ ( to cut a range, press ‘CTRL + x’)
Select cell A6 and press ‘CTRL + v’ to paste this
To move cell to the botton of the range, hold down ‘CTRL and press down
key’
To quickly move to the right of the range, hold down ‘CTRL and press
right key’
To select cells while moving down, hold down ‘SHIFT and press down key
a few time’
To select cells while moving to the right, hold down ‘SHIFT and press right
key a few times’
To quickly bold a range, select the range and press ‘CTRL + b’
To select cells while moving down all once, hold down ‘CTRL + SHIFT and
press down key a few time’
To select cells while moving to the right, hold down ‘CTRL + SHIFT and
press right key a few times’
## DATA WRANGLING
# CELL REFERENCES – RELATIVE, ABSOLUTE AND MIXED
Cell reference helps us to generalize the formulas or generalize any of the
operations/functions
Relative Reference (by default in excel)
Relative cell reference is useful when you have to create a formula
for a range of cells and the formula needs to refer to relative cell
reference.
Absolute Reference
Absolute cell reference is useful when you don’t want the cell
reference to change as you copy formula. This could be in case
when you have fixed value that you need to use in formula (such as
tax rate, commission rate, number of months, etc)
First the unfixed cell is specified then the fix cell is specified using ‘$’
after each character of the cell (F2 * $F$14)
Mixed Reference
Mixed reference is used when we want to lock row or column either
of them
Method 2
Add numbers using cells name. Example ( = A7 + A8)
Method 3
Add numbers using cell names and number (= A7 + A8 + 100)
Method 4
Using cell name and function. Example (=Sum (A2:A9))
Method 5
Drag corner to generalize formula
Method 6
Make table and define formula
Method 2
Using the Power Symbol. Example: A1^(1/2)
Method 1
Using Function. Example: SQRT(A1)
This won’t work for negative numbers
PERCENTAGE FUNCTION
Method 1
By using percentage symbol (%). Example: (=A1*50%)
Method 2
By using percentage symbol (%). Example: (=A1*(1+B1))
Here, A1=50, B1=50%, you will get value as (A1+50% of A1)
#Name in Formula
There two types of Names in Formula
1. Range Name: Selecting range of cell
2. Constant Name: Selecting single cell
Method 1.
Select the range of cells or a cell => In ribbon, Click on Formula =>
Define Name
Method 2.
Select the range of cells or cell => Write the name in the name box =>
Press Enter Button
If you want to delete name for the range of cells or a cell then,
In ribbon, click on formula => Click on Name Manager => You can add,
edit or delete name
# DATE AND TIME FUNCTION
To enter a data in excel, use the “/” or “-” characters. To enter a time,
use the “:” (colon). You can also enter a date and a time in one cell
Select cell => Right click, and then click format cells. => In the Category
list, select Data, and select a Data format => Click OK
Custom Date and item format can also be created
Shortcut Key to format the cell is “Ctrl + 1” Key
#Sorting Data
By Color
Select any cell of the colored column => Go to Data Tab and hit sort
button => Select column, in sort on option select cell color/ font color
By adding multi color you can select priority as well
By Value
Ascending or descending order by clicking respective buttons
Custom sort can also be done based on column priority
#Filter Data
It means to fetch out data with certain similar characteristics
By cell color
By font color
By value
1. By text values, alphabetically
2. By numerical values (=, != , >=, <= , > , <)
For filtering you can also use AND and OR functions in filter.
Hit filter button or (Ctrl + shift + L) for filtering data
# Data Cleaning
# Concatenate
Concatenate function is used to join the strings. Using
Concatenate Function
Method 1:
By using CONCAT function
Method 2:
By using & operator
FIND:
Wildcard characters:
A question mark (?) matches one character
A asterisk (*) match series of characters
# Len & Char
LEN function is use to calculate the length of the string
Syntax: LEN(“text”)
#Round
It returns a number rounded to a given number of digits. The
ROUND function can round to either left or right of the
decimal point
Syntax: ROUND(number, number of digit)
#Floor
It round a given number down to the nearest specified
multiple
Syntax: FLOOR(number, multiple)
For Positive value
#And & Or
AND means when both the conditions are True the only
answer is True otherwise it’s False
OR means when any one condition is True the answer is True
else the answer is False