Wednesday, June 14, 2017

Repeat Last Command Used (Shortkey)

Repeat last command used by pressing <F4> key.


Saturday, May 27, 2017

Shortkeys to work around in Excel Environment (Shortkeys/HotKeys)

Important short keys to work around in Microsoft Excel Environment to speedup your productivity ...  
KEYS------------------------
Description-------------------------------------------
Selection

Ctrl + A
Select All (if...)
Shft + ArrowKeys
Select adjacent cell
Shft + SpaceBar
Select whole row
Ctrl + SpaceBar
Select whole column


Column/ Rows/ Cells

Alt O C W
To change column width by points
Alt O R E
To change row height by points
Alt O C A
AutoFit column width as selected cell’s data.
Alt I R
Insert above a blank row
Alt I C
Insert right-side a blank column
Ctrl +
Insert column/ Row/ Cell.
Ctrl –
Delete column/ Row/ Cell.
Ctrl 0
Hide column(s)
Ctrl 9
Hide row(s)
Alt O C U
Unhide columns within selected range
Alt O R U
Unhide rows within selected range
Alt W F F
Toggle Freeze/ Unfreeze rows/columns


Sheets

Ctrl PgUp
Goto previous sheet
Ctrl PgDn
Goto next sheet
Shft F11
Insert new worksheet
Alt H O R
Rename active sheet
Alt T P P
Toggle Protect/ Unprotect sheet
Alt I B
Toggle page break
Alt H O M
To get “Copy and Move” dialogue box


While Cell Editing

Home
Goto start of line
Ctrl Home
Goto Start of cell contents
End
Goto end of line
Ctrl End
Goto end of cell contents
Ctrl LeftArrow
Move one word left side
Ctrl RigthArrow
Move one word right side
Ctrl Delete
To delete all data right side of cursor in cell.





Friday, April 7, 2017

CHOOSE Function

Returns a value from a list based on position. Uses index_num to return a value from arguments.

Syntax:     =CHOOSE(index_num, value1, [value2], ...)

index_num  must be a number or a formula or reference to a cell containing a number between 1 and 254.

value1, value2, ...  Value 1 is required, subsequent values are optional. 1 to 254 value arguments from which CHOOSE selects a value.


Examples:
if value1 through value7 are the days of the week, CHOOSE returns one of the days when a number between 1 and 7 is used as index_num.

=CHOOSE(A1,"Mon","Tue","Wed","Thu","Fri","Sat","Sun")

=SUM(CHOOSE(2,A1:A10,B1:B10,C1:C10))
this will work as =SUM(B1:B10)


Common Errors
#VALUE!    -  
*  The supplied index_num is less than 1 or is greater than the supplied number of values;
*  The supplied index_num argument is non-numeric.

#NAME?
*  Occurs if any of the value arguments are text values that are not enclosed in quotes and are not valid cell references.




For more detail, check below links or contact us ...
* CHOOSE Function at https://office.com

Sunday, March 19, 2017

Microsoft Excel 2010 Interface

At first; Microsoft Excel 2010 interface (screen) looks as divided into two parts; 1) Command buttons and 2) Worksheet; but; there are many other parts as well, if you have knowledge about them you will have an ease to read and understand whenever they referred- in any process either downloaded from internet, book or even by a teacher.

Below is a snap along-with parts names. Click to enlarge.

.

Friday, March 17, 2017

Add or Delete Cell Borders (Shortkeys)

Shortkeys to add or remove a cell or range of cells borders

Ctrl + H + B + S ... Border Outline on a selected range
Ctrl + Shft + 7 .... Border Outline on a selected range
Ctrl + H + S + A ... Border all cells on selected range

Ctrl + H + B +N  ... Clear/delete borders
Ctrl + Shft + -  ... Clear/delete borders

Example:


Sunday, February 26, 2017

Find a Quarter Number from Given Date

A custom formula using two functions and return quarter number from given date, based on calendar year.

   =ROUNDUP(MONTH(A1)/3,0)

Friday, February 24, 2017

Flash Fill

Flash fill is a new tool introduced in Microsoft Excel 2013, to fill out data based on an example.
 

Excel detect a pattern in your data, fill accordingly remaining data within a flash of time. It works best when your data has some consistency. Flash Fill is available in Data tab and Ctrl+E is a shortkey

Rather than manually entering first, middle, or last names in respective columns (or attempting to copy an entire client name from column A and then editing out the parts not needed in the First Name, Middle Name, and Last Name columns), you can use Flash Fill to quickly and effectively do the job.




For more detail check at office.com by clicking here.

Get first word of a cell

To extract first word from a cell, create a custom formula by combining LEFT() and FIND()

    =LEFT(A1,FIND(" ",A1,1)-1)



Change Orientation of Data (Transpose)

Change orientation of data from rows to column and vice versa.

    1. Select n copy data, 
    2. Place cursor where u want data
    3. Goto Paste Special, (CTRL+SHFT+V)
    4. Click to enable Transpose option, (E)
    5. Click on OK (Enter)

Below snap will be helpful to understand ...


(click on image to enlarge)

Tuesday, February 21, 2017

VLOOKUP Function

VLOOKUP() Search a given value in the first column of an array, and returns a corresponding value from another column.

Syntax:

 =VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup]) 

Arguments:
1) lookup_value -- what u want to look in the first column of table_array

2) table_array -- range to look the lookup_value in first column and also it covers the corresponding return column.

3) col_index_num -- the corresponding column number in table_array where from desired return value lying.

4) range_lookup -- match type; for approximate match use true/1 and for exact match use false/0

Important:
* search from top to bottom, in first column of table_array and stops at the first match
* for corresponding column, it always goes from left to right.
* by default range_lookup is true
* sorted data is required if range_lookup is true, no need to sort if false.

How it works ...


How to use ...
suppose on a sheet we have data which downloaded from an ERP, where department IDs are mentioned instead of department names and department ID with department names are at available at another sheet.
The requirement is to add a column on main sheet and show department names.

check below example ...

VLOOKUP() with Approximate match ... 


For more detail, check below links or contact us ...