21
The content of this presentation is proprietary and confidential to Mantralogix Inc. Its contents should not be disclosed to any third party without Mantralogix Inc.’s prior written consent. Copyright of this document is claimed by Mantralogix Inc. Date: October 21,2015 Title: Excel Tips and Tricks MANTRAVISION

Excel Tips and Tricks

Embed Size (px)

Citation preview

Page 1: Excel Tips and Tricks

The content of this presentation is proprietary and confidential to Mantralogix Inc. Its contents should not be disclosed to any third party without Mantralogix Inc.’s prior written consent.

Copyright of this document is claimed by Mantralogix Inc.

Date: October 21,2015

Title: Excel Tips and TricksMANTRAVISION

Page 2: Excel Tips and Tricks

Quick Tips

Page 3: Excel Tips and Tricks

2023-05-03 3

Quick Tips

• Quickly Move and Copy Data in Cells• choose and move the pointer to the border, after it turns to a crossed arrow icon, drag to move the

column freely• to copy Ctrl and drag

• Vague Search with Wild Card– ? stands for one character– * represents one or more characters

• Find and Replace

• Converting negative values– Use -1 and Paste Special>Multiply

• One Click to Get More Status

• Insert a line within a cell– Alt+ENTER

Mantralogix

Page 4: Excel Tips and Tricks

2023-05-03 4

Quick Tips

• Moves to the non blank cell furthest left or right in the current row

• Moves to the non blank cell furthest above or below in the current column

• Select entire row

• Select entire column

• Selects all the cells above or below the current cell

Mantralogix

Page 5: Excel Tips and Tricks

2023-05-03 5

Quick Tips

• Control-Home = Navigates to cell A1

• Control-End = Navigates to the last cell that contains data

• Alt-= = Autosums the cells above the current cell

• Ctrl + Shift + $. For percentages it's Ctrl + Shift + %.

Mantralogix

Page 6: Excel Tips and Tricks

2023-05-03 6

Quick Tips

• Format field as percentage– CTRL + SHIFT + %

• Format field with dollar sign– CTRL + SHIFT + $

• Format field as number– CTRL + SHIFT + !

• General format– CTRL + SHIFT + ~ (Tilde)

• Autosums the cells above the current cell– ALT + =

Mantralogix

Page 7: Excel Tips and Tricks

Working with Data

Page 8: Excel Tips and Tricks

2023-05-03 8

Working with Data

• Transforming the Case of Text– Upper Case

=UPPER(TEXT)

– Lower Case =LOWER(TEXT)

– Title Case =PROPER(TEXT)

• Transpose Data from a Row to a Column– Copy, Paste Special>> Transpose

Mantralogix

Page 9: Excel Tips and Tricks

2023-05-03 9

Working with Data

• Store data within Data Tables

Help in easily adding more rows and columns without worrying about updating – formula references– formatting options– etc.

Select Table , Insert > Table

Mantralogix

Page 10: Excel Tips and Tricks

2023-05-03 10

Working with Data• Split information from one cell into multiple cells

Data > Text To Columns

Mantralogix

Page 11: Excel Tips and Tricks

Formula

Page 12: Excel Tips and Tricks

2023-05-03 12

Formula

• LEFT - returns the first character or characters in a text string, based on the number of characters you specify

• RIGHT - returns the last character or characters in a text string, based on the number of characters you specify.

• MID - returns a specific number of characters from a text string, starting at the position you specify, based on the number of characters you specify.

Mantralogix

=LEFT (text, [num_chars])

=RIGHT (text, [num_chars])

=MID (text, start_num, [num_chars])

Page 13: Excel Tips and Tricks

2023-05-03 13

Formula

• REPT – repeats the text a given number of times

• LEN - returns the number of characters in a text string

• & - concatenate

Mantralogix

=LEN (text)

=REPT (text, Number_times)

Page 14: Excel Tips and Tricks

2023-05-03 14

Formula

Sum the values in a range that meet criteria that you specify

• SUMIF – single criteria

• SUMIFS – one or more criteria

Mantralogix

Evaluate

record

=SUMIF (range, criteria, [sum_range])

With this

criteria

Get Sum of

this

=SUMIFS (sum_range, criteria_range1, criteria1, criteria_range2, criteria2], ...)

Evaluate

record

With this

criteria

Get Sum of

this

Page 15: Excel Tips and Tricks

2023-05-03 15

Formula

Count the number of cells that meet the criteria that you specify

• COUNTIF – single criteria

• COUNTIFS – one or more criteria

Mantralogix

Evaluate

record

=COUNTIF (range, criteria,

With this

criteria

=COUNTIFS (criteria_range1, criteria1, criteria_range2, criteria2], ...)

Evaluate

record

With this

criteria

Page 16: Excel Tips and Tricks

2023-05-03 16

Formula

• VLOOKUPLooks for a value in the leftmost column of a table, and then

returns a value in the sane row from a column you specify. The table must be sorted in ascending order.

Mantralogix

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

Look for this

value

from this table return the

record from

this column

False = exact

match

Page 17: Excel Tips and Tricks

2023-05-03 17

Formula

• MATCH – returns the relative position of an item in an array that matches a specified value in a specified order.

Mantralogix

Look for this

value

=MATCH (lookup_value, lookup_array, Match_type)

from this

table

0 = exact

Page 18: Excel Tips and Tricks

2023-05-03 18

Formula

• INDEX - Returns a value or the reference to a value from within a table or range

Mantralogix

=INDEX(array, row_num, [column_num])

From this

table

Locate this

row

Locate this

column

Page 19: Excel Tips and Tricks

2023-05-03 19

Formula

• INDEX - Returns a value or the reference to a value from within a table or range

• INDEX + MATCH

Mantralogix

=INDEX(array, row_num, [column_num])

From this

table

Locate this

row

Locate this

column

=INDEX(array, Match(lookup_value, lookup_array), [column_num])

From this

table

Locate this

row

Locate this

column

Page 20: Excel Tips and Tricks

The content of this presentation is proprietary and confidential to Mantralogix Inc. Its contents should not be disclosed to any third party without Mantralogix Inc.’s prior written consent.

Copyright of this document is claimed by Mantralogix Inc.

Thank you!

Page 21: Excel Tips and Tricks

The content of this presentation is proprietary and confidential to Mantralogix Inc. Its contents should not be disclosed to any third party without Mantralogix Inc.’s prior written consent.

Copyright of this document is claimed by Mantralogix Inc.