SlideShare a Scribd company logo
1 of 5
Download to read offline
Category: Excel
Excel: Advanced Formulas and Functions
Excel provides an enormous number of established formulas and assistance in auditing and calculating your data. The primary
groupings are financial, logical, text, date and time, lookup and reference, math and trigonometry, statistical, engineering, cube, and
file-related information.
Contents
1 Financial Formulas
2 Text Functions
2.1 Concatenate
2.2 Left, Right
3 Conditional Functions
3.1 If
3.2 Countif, Countifs
3.3 Sumif, Sumifs
4 More Functions
4.1 Len
4.2 Proper
4.3 Trim
4.4 Rounding
Financial Formulas
Financial functions are probably one of the most commonly used groups. You can calculate
payment plans, interest rates, depreciation, and the yield on securities (just to name a few!). Excel
simplifies the process by providing fill-in-the-blanks.
The following example returns a loan payment. The lower chart shows the balance if you pay a different amount.
Enter principle, interest and term in the yellow highlighted cells (C1, C3, C4). The PMT formula should refer to these cells and look
like this: =PMT(C3/12,C4,C1). Enter the “actual payment” amount in D2.
Copy the following formulas into the table and drag down to populate the table.
Log in
Excel: Advanced Formulas and Functions - iSchool Tutorials https://tutorials.ischool.utexas.edu/index.php/Excel:_Advanced_Formula...
1 of 5 16/09/2015 1:18 PM
In cell E7 enter "=C1"
In cell B8 enter "=$D$2"
In cell C8 enter "=(E7*$C$3)/12"
In cell D8 enter "=B8-C8"
In cdll E8 enter "=E7-D8"
Text Functions
Concatenate
The concatenate function strings together the contents of a series of cells (text1, text2). The order that you select the cells is the order
that they are combined into the resulting cell.
Syntax: CONCATENATE(text1,text2,...)
Shortcut: The symbol “&” can also be used instead of the concatenate function (=A2&B2).
Example The following examples combines fields to create FullName and Address fields.
Cell Formula C2 = CONCATENATE(A2," ",B2) note that [text2] is [quote space quote] G2 = CONCATENATE(E2,”, TX”,F2) note
that [text2] is [quote comma space TX space quote]
Left, Right
LEFT and RIGHT are useful if you wish to remove extra characters from a cell AND if you are able to specify how many characters
to remove from the left or right. The formula requires the cell reference (text) and the number of characters to return (num_chars).
MID performs a similar task of returning reduced characters. This function contains 3 qualifiers: cell reference (text), the position of
the character where you wish the text to begin (start_num), and the number of characters to return (num_chars).
Syntax: =LEFT(text,num_chars) or RIGHT(text,num_chars) =MID(text,start_num,num_chars)
Example Cell B2: =LEFT(A2,5) Cell E2: =MID(A2,1,5)
Excel: Advanced Formulas and Functions - iSchool Tutorials https://tutorials.ischool.utexas.edu/index.php/Excel:_Advanced_Formula...
2 of 5 16/09/2015 1:18 PM
Conditional Functions
Conditional functions, like conditional formatting, are great features to help you highlight or manipulate select information based on
specified criteria. Excel evaluates the source against the criteria, and returns a value if the logical test is “true” and a different value
for “false”. In the same way, Excel will perform a function, like adding or counting, based on the logical test.
The elements “value_if_true” and “value_if_false” may be a static value or another formula.
Up to 7 functions may be nested to create some very elaborate tests.
If, Countif, and Sumif perform the logical test using single criteria.
Countifs, and Sumifs perform the logical test on a range of cells that meet multiple criteria.
If
IF is straightforward. The reference cell is tested against criteria and will return a value or perform another function if the test returns
true or false. “Logical_test” includes both the cell reference and the criteria, such as “B4 is less than 20.”
Syntax: IF(logical_test,value_if_true,value_if_false)
Example In this example, we are testing against the width of a book. If the width is under .375 in (3/8 in), the book requires a
pamphlet binding (pam). If the width were equal or over .375 in, the book would require library binding (LB).
Cell Formula C2 =IF(B2>0.375,"pam","LB")
Countif, Countifs
Countif and Countifs literally count the number of times the test returns “true.” Other “count” functions: count – counts the number
of cells that contain numbers, counta – counts the number of cells that are not empty, and countblank – counts the number of empty
cells.
Syntax: COUNTIF(range,criteria) COUNTIFS(range1,criteria1,range2,criteria2,...)
Example: In the next example, we are counting how many books require 1) pamphlet binding (pam), 2) Library Binding (LB), and
3) how many books need both Library Binding and Spine Repair (LB/Repair).
Cell H2 =COUNTIF($C$2:$C$5,"pam") Cell H3 =COUNTIFS($D$2:$D$5,"good",$C$2:$C$5,"LB") Cell H4
=COUNTIFS($D$2:$D$5,"poor",$C$2:$C$5,"LB")
Sumif, Sumifs
These functions return a sum of numbers that meet specified criteria. Range is the range of cells to compare against the criteria. A
range of cells presented in this way: A2:A100 and an entire row looks like this: A:A. Criteria may be a value or range (“=30” or
Excel: Advanced Formulas and Functions - iSchool Tutorials https://tutorials.ischool.utexas.edu/index.php/Excel:_Advanced_Formula...
3 of 5 16/09/2015 1:18 PM
“=black” or “<2009”). Sum_range is used if the actual items to be added are in a different range than the compared range. If nothing
is entered here, the original range is summed.
Syntax: SUMIF(range,criteria,sum_range) SUMIFS(sum_range,criteria_range1,criteria1,criteria_range2,criteria2…)
note: see that the sum_range comes FIRST in the SUMIFS formula.
Example: Calculate the cost of book repair based on condition of the item.
More Functions
There are many extremely useful functions - following are just a few more examples. Search the Excel Help for “functions” and
you’ll find the “List of all functions by category” for a full list of statistical, database, math, financial, and many, many, many more
function types.
Len
Syntax: =LEN(text)
Returns the number of characters in a text string – spaces count as characters. Suggestion: use to determine lengths of each
line of address on a label. The US Post office only allows 46 characters per line for mass mailings (as of 2008). Another use is
to determine number of characters in a text block for web or print content.
Proper
Syntax: =PROPER(text)
Capitalizes the first letter of every word (as in “Rebecca Holte”).
Trim
Syntax: =TRIM(text)
Removes extra spaces from text strings – leaves a single space between words (“Rebecca Holte” = “Rebecca Holte”).
Rounding
Adding/multiplying numbers obtained from formula sums, you may see different values than expected, due to the how many
decimal points are used and when rounding occurs. You may wish to use a rounding or even/odd function. For “number” you
can enter an actual number or cell reference, and “num_digits” indicates how many decimal places you require.
Roundup and Rounddown Syntax: = ROUNDUP(number,num_digits)
Even and Odd Syntax: =EVEN(number)
Retrieved from "https://tutorials.ischool.utexas.edu/index.php/Excel:_Advanced_Formulas_and_Functions"
Excel: Advanced Formulas and Functions - iSchool Tutorials https://tutorials.ischool.utexas.edu/index.php/Excel:_Advanced_Formula...
4 of 5 16/09/2015 1:18 PM
Excel: Advanced Formulas and Functions - iSchool Tutorials https://tutorials.ischool.utexas.edu/index.php/Excel:_Advanced_Formula...
5 of 5 16/09/2015 1:18 PM

More Related Content

What's hot

10 Excel Formulas that will help you in any Job
10 Excel Formulas that will help you in any Job10 Excel Formulas that will help you in any Job
10 Excel Formulas that will help you in any JobHitesh Biyani
 
How to use Hlookup find an exact match
How to use Hlookup find an exact match How to use Hlookup find an exact match
How to use Hlookup find an exact match Excel Advise
 
Excel IF function
Excel IF functionExcel IF function
Excel IF functionHtay Aung
 
VLOOKUP Function - Marelen Talavera - Vivacious Analytic
VLOOKUP Function - Marelen Talavera - Vivacious AnalyticVLOOKUP Function - Marelen Talavera - Vivacious Analytic
VLOOKUP Function - Marelen Talavera - Vivacious AnalyticMaria Elena Acdol-Talavera
 
Using The Function In Excel 3
Using The Function In Excel 3Using The Function In Excel 3
Using The Function In Excel 3norzaini
 
Excel functions formulas
Excel functions formulasExcel functions formulas
Excel functions formulasLearnIT@UD
 
Excel Top 10 formula For The Beginners
Excel Top 10 formula For The BeginnersExcel Top 10 formula For The Beginners
Excel Top 10 formula For The BeginnersStat Analytica
 
Top 20 microsoft excel formulas you must know
Top 20 microsoft excel formulas you must knowTop 20 microsoft excel formulas you must know
Top 20 microsoft excel formulas you must knowAlexHenderson59
 
VLOOKUP HLOOKUP INDEX MATCH
VLOOKUP HLOOKUP INDEX MATCHVLOOKUP HLOOKUP INDEX MATCH
VLOOKUP HLOOKUP INDEX MATCHMridul Bansal
 
Spreadsheet text functions
Spreadsheet text functionsSpreadsheet text functions
Spreadsheet text functionsAnjan Mahanta
 

What's hot (20)

MS Excel Function
MS Excel FunctionMS Excel Function
MS Excel Function
 
10 Excel Formulas that will help you in any Job
10 Excel Formulas that will help you in any Job10 Excel Formulas that will help you in any Job
10 Excel Formulas that will help you in any Job
 
How to Use VLOOKUP in Excel
How to Use VLOOKUP in ExcelHow to Use VLOOKUP in Excel
How to Use VLOOKUP in Excel
 
Mastering Excel Formulas and Functions
Mastering Excel Formulas and FunctionsMastering Excel Formulas and Functions
Mastering Excel Formulas and Functions
 
How to use Hlookup find an exact match
How to use Hlookup find an exact match How to use Hlookup find an exact match
How to use Hlookup find an exact match
 
Excel.useful fns
Excel.useful fnsExcel.useful fns
Excel.useful fns
 
Excel Function Training
Excel Function TrainingExcel Function Training
Excel Function Training
 
Roshdy salem
Roshdy salemRoshdy salem
Roshdy salem
 
Excel IF function
Excel IF functionExcel IF function
Excel IF function
 
VLOOKUP Function - Marelen Talavera - Vivacious Analytic
VLOOKUP Function - Marelen Talavera - Vivacious AnalyticVLOOKUP Function - Marelen Talavera - Vivacious Analytic
VLOOKUP Function - Marelen Talavera - Vivacious Analytic
 
Using The Function In Excel 3
Using The Function In Excel 3Using The Function In Excel 3
Using The Function In Excel 3
 
Excel 2007 Unit E
Excel 2007 Unit EExcel 2007 Unit E
Excel 2007 Unit E
 
Excel functions formulas
Excel functions formulasExcel functions formulas
Excel functions formulas
 
Excel Top 10 formula For The Beginners
Excel Top 10 formula For The BeginnersExcel Top 10 formula For The Beginners
Excel Top 10 formula For The Beginners
 
Irahm I
Irahm IIrahm I
Irahm I
 
Top 20 microsoft excel formulas you must know
Top 20 microsoft excel formulas you must knowTop 20 microsoft excel formulas you must know
Top 20 microsoft excel formulas you must know
 
VLOOKUP HLOOKUP INDEX MATCH
VLOOKUP HLOOKUP INDEX MATCHVLOOKUP HLOOKUP INDEX MATCH
VLOOKUP HLOOKUP INDEX MATCH
 
Ms excel ppt
Ms   excel pptMs   excel ppt
Ms excel ppt
 
Gse 213 lesson 3
Gse 213 lesson 3Gse 213 lesson 3
Gse 213 lesson 3
 
Spreadsheet text functions
Spreadsheet text functionsSpreadsheet text functions
Spreadsheet text functions
 

Viewers also liked

Excel Function in Advanced Use
Excel Function in Advanced UseExcel Function in Advanced Use
Excel Function in Advanced UseDick Lam
 
Sisesnse Business Intelligence Tool
Sisesnse Business Intelligence ToolSisesnse Business Intelligence Tool
Sisesnse Business Intelligence ToolHarnoor Singh
 
Sisense Introduction PPT
Sisense Introduction PPTSisense Introduction PPT
Sisense Introduction PPTKhirod Sahu
 
SiSense Overview
SiSense OverviewSiSense Overview
SiSense OverviewBruno Aziza
 
Ms excel and it’s function
Ms excel and it’s functionMs excel and it’s function
Ms excel and it’s functionsneha94
 
3 Things Every Sales Team Needs to Be Thinking About in 2017
3 Things Every Sales Team Needs to Be Thinking About in 20173 Things Every Sales Team Needs to Be Thinking About in 2017
3 Things Every Sales Team Needs to Be Thinking About in 2017Drift
 
How to Become a Thought Leader in Your Niche
How to Become a Thought Leader in Your NicheHow to Become a Thought Leader in Your Niche
How to Become a Thought Leader in Your NicheLeslie Samuel
 

Viewers also liked (7)

Excel Function in Advanced Use
Excel Function in Advanced UseExcel Function in Advanced Use
Excel Function in Advanced Use
 
Sisesnse Business Intelligence Tool
Sisesnse Business Intelligence ToolSisesnse Business Intelligence Tool
Sisesnse Business Intelligence Tool
 
Sisense Introduction PPT
Sisense Introduction PPTSisense Introduction PPT
Sisense Introduction PPT
 
SiSense Overview
SiSense OverviewSiSense Overview
SiSense Overview
 
Ms excel and it’s function
Ms excel and it’s functionMs excel and it’s function
Ms excel and it’s function
 
3 Things Every Sales Team Needs to Be Thinking About in 2017
3 Things Every Sales Team Needs to Be Thinking About in 20173 Things Every Sales Team Needs to Be Thinking About in 2017
3 Things Every Sales Team Needs to Be Thinking About in 2017
 
How to Become a Thought Leader in Your Niche
How to Become a Thought Leader in Your NicheHow to Become a Thought Leader in Your Niche
How to Become a Thought Leader in Your Niche
 

Similar to Excel Formulas and Functions Guide

Libre Office Calc Lesson 4: Understanding Functions
Libre Office Calc Lesson 4: Understanding FunctionsLibre Office Calc Lesson 4: Understanding Functions
Libre Office Calc Lesson 4: Understanding FunctionsSmart Chicago Collaborative
 
3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.pptJosephIThomas
 
Useful Excel Functions & Formula Used everywhere.pptx
Useful Excel Functions & Formula Used everywhere.pptxUseful Excel Functions & Formula Used everywhere.pptx
Useful Excel Functions & Formula Used everywhere.pptxvanshikatyagi74
 
3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.pptAllanGuevarra1
 
E-Book 25 Tips and Tricks MS Excel Functions & Formulaes
E-Book 25 Tips and Tricks MS Excel Functions & FormulaesE-Book 25 Tips and Tricks MS Excel Functions & Formulaes
E-Book 25 Tips and Tricks MS Excel Functions & FormulaesBurCom Consulting Ltd.
 
Introduction to micro soft Training ms Excel.ppt
Introduction to micro soft Training ms Excel.pptIntroduction to micro soft Training ms Excel.ppt
Introduction to micro soft Training ms Excel.pptdejene3
 
Ms excel commands
Ms excel commandsMs excel commands
Ms excel commandsDiyaVerma14
 
Excel Overview.pptx
Excel Overview.pptxExcel Overview.pptx
Excel Overview.pptxNewmanLeke
 
Microsoft Excel Advanced Features
Microsoft Excel Advanced FeaturesMicrosoft Excel Advanced Features
Microsoft Excel Advanced FeaturesAkashMeghwar2
 
Simple Spreadsheet Tips
Simple Spreadsheet TipsSimple Spreadsheet Tips
Simple Spreadsheet TipsInside Access
 
IntrotoSpreadsheets.ppt
IntrotoSpreadsheets.pptIntrotoSpreadsheets.ppt
IntrotoSpreadsheets.pptSayeedMahmud7
 
Presentation on MS Excel-7.pptx
Presentation on MS Excel-7.pptxPresentation on MS Excel-7.pptx
Presentation on MS Excel-7.pptxamitaYadav40
 
Basic Formulas - Excel 2013 Tutorial
Basic Formulas - Excel 2013 TutorialBasic Formulas - Excel 2013 Tutorial
Basic Formulas - Excel 2013 TutorialSpreadsheetTrainer
 

Similar to Excel Formulas and Functions Guide (20)

Libre Office Calc Lesson 4: Understanding Functions
Libre Office Calc Lesson 4: Understanding FunctionsLibre Office Calc Lesson 4: Understanding Functions
Libre Office Calc Lesson 4: Understanding Functions
 
3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt
 
Useful Excel Functions & Formula Used everywhere.pptx
Useful Excel Functions & Formula Used everywhere.pptxUseful Excel Functions & Formula Used everywhere.pptx
Useful Excel Functions & Formula Used everywhere.pptx
 
3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt
 
Lect11
Lect11Lect11
Lect11
 
E-Book 25 Tips and Tricks MS Excel Functions & Formulaes
E-Book 25 Tips and Tricks MS Excel Functions & FormulaesE-Book 25 Tips and Tricks MS Excel Functions & Formulaes
E-Book 25 Tips and Tricks MS Excel Functions & Formulaes
 
Introduction to micro soft Training ms Excel.ppt
Introduction to micro soft Training ms Excel.pptIntroduction to micro soft Training ms Excel.ppt
Introduction to micro soft Training ms Excel.ppt
 
Ms excel commands
Ms excel commandsMs excel commands
Ms excel commands
 
Excel Overview.pptx
Excel Overview.pptxExcel Overview.pptx
Excel Overview.pptx
 
Microsoft Excel Advanced Features
Microsoft Excel Advanced FeaturesMicrosoft Excel Advanced Features
Microsoft Excel Advanced Features
 
Excel Training
Excel TrainingExcel Training
Excel Training
 
stats
statsstats
stats
 
Simple Spreadsheet Tips
Simple Spreadsheet TipsSimple Spreadsheet Tips
Simple Spreadsheet Tips
 
Excel formula
Excel formulaExcel formula
Excel formula
 
IntrotoSpreadsheets.ppt
IntrotoSpreadsheets.pptIntrotoSpreadsheets.ppt
IntrotoSpreadsheets.ppt
 
Presentation on MS Excel-7.pptx
Presentation on MS Excel-7.pptxPresentation on MS Excel-7.pptx
Presentation on MS Excel-7.pptx
 
Advance excel
Advance excelAdvance excel
Advance excel
 
Basic Formulas - Excel 2013 Tutorial
Basic Formulas - Excel 2013 TutorialBasic Formulas - Excel 2013 Tutorial
Basic Formulas - Excel 2013 Tutorial
 
Microsoft Excel
Microsoft ExcelMicrosoft Excel
Microsoft Excel
 
042-MIS105-L07.ppt
042-MIS105-L07.ppt042-MIS105-L07.ppt
042-MIS105-L07.ppt
 

Recently uploaded

VIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With RoomVIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Roomgirls4nights
 
VIP Call Girls Kolkata Ananya 🤌 8250192130 🚀 Vip Call Girls Kolkata
VIP Call Girls Kolkata Ananya 🤌  8250192130 🚀 Vip Call Girls KolkataVIP Call Girls Kolkata Ananya 🤌  8250192130 🚀 Vip Call Girls Kolkata
VIP Call Girls Kolkata Ananya 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130  Available With RoomVIP Kolkata Call Girl Alambazar 👉 8250192130  Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Roomdivyansh0kumar0
 
AlbaniaDreamin24 - How to easily use an API with Flows
AlbaniaDreamin24 - How to easily use an API with FlowsAlbaniaDreamin24 - How to easily use an API with Flows
AlbaniaDreamin24 - How to easily use an API with FlowsThierry TROUIN ☁
 
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一Fs
 
Git and Github workshop GDSC MLRITM
Git and Github  workshop GDSC MLRITMGit and Github  workshop GDSC MLRITM
Git and Github workshop GDSC MLRITMgdsc13
 
Gram Darshan PPT cyber rural in villages of india
Gram Darshan PPT cyber rural  in villages of indiaGram Darshan PPT cyber rural  in villages of india
Gram Darshan PPT cyber rural in villages of indiaimessage0108
 
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With RoomVIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Roomishabajaj13
 
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607dollysharma2066
 
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
VIP Kolkata Call Girl Dum Dum 👉 8250192130 Available With Room
VIP Kolkata Call Girl Dum Dum 👉 8250192130  Available With RoomVIP Kolkata Call Girl Dum Dum 👉 8250192130  Available With Room
VIP Kolkata Call Girl Dum Dum 👉 8250192130 Available With Roomdivyansh0kumar0
 
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...aditipandeya
 
Call Girls In Mumbai Central Mumbai ❤️ 9920874524 👈 Cash on Delivery
Call Girls In Mumbai Central Mumbai ❤️ 9920874524 👈 Cash on DeliveryCall Girls In Mumbai Central Mumbai ❤️ 9920874524 👈 Cash on Delivery
Call Girls In Mumbai Central Mumbai ❤️ 9920874524 👈 Cash on Deliverybabeytanya
 
10.pdfMature Call girls in Dubai +971563133746 Dubai Call girls
10.pdfMature Call girls in Dubai +971563133746 Dubai Call girls10.pdfMature Call girls in Dubai +971563133746 Dubai Call girls
10.pdfMature Call girls in Dubai +971563133746 Dubai Call girlsstephieert
 
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一Fs
 
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012rehmti665
 

Recently uploaded (20)

VIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With RoomVIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
 
VIP Call Girls Kolkata Ananya 🤌 8250192130 🚀 Vip Call Girls Kolkata
VIP Call Girls Kolkata Ananya 🤌  8250192130 🚀 Vip Call Girls KolkataVIP Call Girls Kolkata Ananya 🤌  8250192130 🚀 Vip Call Girls Kolkata
VIP Call Girls Kolkata Ananya 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130  Available With RoomVIP Kolkata Call Girl Alambazar 👉 8250192130  Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
 
AlbaniaDreamin24 - How to easily use an API with Flows
AlbaniaDreamin24 - How to easily use an API with FlowsAlbaniaDreamin24 - How to easily use an API with Flows
AlbaniaDreamin24 - How to easily use an API with Flows
 
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
 
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
 
Git and Github workshop GDSC MLRITM
Git and Github  workshop GDSC MLRITMGit and Github  workshop GDSC MLRITM
Git and Github workshop GDSC MLRITM
 
Gram Darshan PPT cyber rural in villages of india
Gram Darshan PPT cyber rural  in villages of indiaGram Darshan PPT cyber rural  in villages of india
Gram Darshan PPT cyber rural in villages of india
 
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With RoomVIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
 
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
 
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
 
VIP Kolkata Call Girl Dum Dum 👉 8250192130 Available With Room
VIP Kolkata Call Girl Dum Dum 👉 8250192130  Available With RoomVIP Kolkata Call Girl Dum Dum 👉 8250192130  Available With Room
VIP Kolkata Call Girl Dum Dum 👉 8250192130 Available With Room
 
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
Model Call Girl in Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in  Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in  Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝
 
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
 
Call Girls In Mumbai Central Mumbai ❤️ 9920874524 👈 Cash on Delivery
Call Girls In Mumbai Central Mumbai ❤️ 9920874524 👈 Cash on DeliveryCall Girls In Mumbai Central Mumbai ❤️ 9920874524 👈 Cash on Delivery
Call Girls In Mumbai Central Mumbai ❤️ 9920874524 👈 Cash on Delivery
 
Call Girls In South Ex 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICE
Call Girls In South Ex 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICECall Girls In South Ex 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICE
Call Girls In South Ex 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICE
 
10.pdfMature Call girls in Dubai +971563133746 Dubai Call girls
10.pdfMature Call girls in Dubai +971563133746 Dubai Call girls10.pdfMature Call girls in Dubai +971563133746 Dubai Call girls
10.pdfMature Call girls in Dubai +971563133746 Dubai Call girls
 
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
 
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
 

Excel Formulas and Functions Guide

  • 1. Category: Excel Excel: Advanced Formulas and Functions Excel provides an enormous number of established formulas and assistance in auditing and calculating your data. The primary groupings are financial, logical, text, date and time, lookup and reference, math and trigonometry, statistical, engineering, cube, and file-related information. Contents 1 Financial Formulas 2 Text Functions 2.1 Concatenate 2.2 Left, Right 3 Conditional Functions 3.1 If 3.2 Countif, Countifs 3.3 Sumif, Sumifs 4 More Functions 4.1 Len 4.2 Proper 4.3 Trim 4.4 Rounding Financial Formulas Financial functions are probably one of the most commonly used groups. You can calculate payment plans, interest rates, depreciation, and the yield on securities (just to name a few!). Excel simplifies the process by providing fill-in-the-blanks. The following example returns a loan payment. The lower chart shows the balance if you pay a different amount. Enter principle, interest and term in the yellow highlighted cells (C1, C3, C4). The PMT formula should refer to these cells and look like this: =PMT(C3/12,C4,C1). Enter the “actual payment” amount in D2. Copy the following formulas into the table and drag down to populate the table. Log in Excel: Advanced Formulas and Functions - iSchool Tutorials https://tutorials.ischool.utexas.edu/index.php/Excel:_Advanced_Formula... 1 of 5 16/09/2015 1:18 PM
  • 2. In cell E7 enter "=C1" In cell B8 enter "=$D$2" In cell C8 enter "=(E7*$C$3)/12" In cell D8 enter "=B8-C8" In cdll E8 enter "=E7-D8" Text Functions Concatenate The concatenate function strings together the contents of a series of cells (text1, text2). The order that you select the cells is the order that they are combined into the resulting cell. Syntax: CONCATENATE(text1,text2,...) Shortcut: The symbol “&” can also be used instead of the concatenate function (=A2&B2). Example The following examples combines fields to create FullName and Address fields. Cell Formula C2 = CONCATENATE(A2," ",B2) note that [text2] is [quote space quote] G2 = CONCATENATE(E2,”, TX”,F2) note that [text2] is [quote comma space TX space quote] Left, Right LEFT and RIGHT are useful if you wish to remove extra characters from a cell AND if you are able to specify how many characters to remove from the left or right. The formula requires the cell reference (text) and the number of characters to return (num_chars). MID performs a similar task of returning reduced characters. This function contains 3 qualifiers: cell reference (text), the position of the character where you wish the text to begin (start_num), and the number of characters to return (num_chars). Syntax: =LEFT(text,num_chars) or RIGHT(text,num_chars) =MID(text,start_num,num_chars) Example Cell B2: =LEFT(A2,5) Cell E2: =MID(A2,1,5) Excel: Advanced Formulas and Functions - iSchool Tutorials https://tutorials.ischool.utexas.edu/index.php/Excel:_Advanced_Formula... 2 of 5 16/09/2015 1:18 PM
  • 3. Conditional Functions Conditional functions, like conditional formatting, are great features to help you highlight or manipulate select information based on specified criteria. Excel evaluates the source against the criteria, and returns a value if the logical test is “true” and a different value for “false”. In the same way, Excel will perform a function, like adding or counting, based on the logical test. The elements “value_if_true” and “value_if_false” may be a static value or another formula. Up to 7 functions may be nested to create some very elaborate tests. If, Countif, and Sumif perform the logical test using single criteria. Countifs, and Sumifs perform the logical test on a range of cells that meet multiple criteria. If IF is straightforward. The reference cell is tested against criteria and will return a value or perform another function if the test returns true or false. “Logical_test” includes both the cell reference and the criteria, such as “B4 is less than 20.” Syntax: IF(logical_test,value_if_true,value_if_false) Example In this example, we are testing against the width of a book. If the width is under .375 in (3/8 in), the book requires a pamphlet binding (pam). If the width were equal or over .375 in, the book would require library binding (LB). Cell Formula C2 =IF(B2>0.375,"pam","LB") Countif, Countifs Countif and Countifs literally count the number of times the test returns “true.” Other “count” functions: count – counts the number of cells that contain numbers, counta – counts the number of cells that are not empty, and countblank – counts the number of empty cells. Syntax: COUNTIF(range,criteria) COUNTIFS(range1,criteria1,range2,criteria2,...) Example: In the next example, we are counting how many books require 1) pamphlet binding (pam), 2) Library Binding (LB), and 3) how many books need both Library Binding and Spine Repair (LB/Repair). Cell H2 =COUNTIF($C$2:$C$5,"pam") Cell H3 =COUNTIFS($D$2:$D$5,"good",$C$2:$C$5,"LB") Cell H4 =COUNTIFS($D$2:$D$5,"poor",$C$2:$C$5,"LB") Sumif, Sumifs These functions return a sum of numbers that meet specified criteria. Range is the range of cells to compare against the criteria. A range of cells presented in this way: A2:A100 and an entire row looks like this: A:A. Criteria may be a value or range (“=30” or Excel: Advanced Formulas and Functions - iSchool Tutorials https://tutorials.ischool.utexas.edu/index.php/Excel:_Advanced_Formula... 3 of 5 16/09/2015 1:18 PM
  • 4. “=black” or “<2009”). Sum_range is used if the actual items to be added are in a different range than the compared range. If nothing is entered here, the original range is summed. Syntax: SUMIF(range,criteria,sum_range) SUMIFS(sum_range,criteria_range1,criteria1,criteria_range2,criteria2…) note: see that the sum_range comes FIRST in the SUMIFS formula. Example: Calculate the cost of book repair based on condition of the item. More Functions There are many extremely useful functions - following are just a few more examples. Search the Excel Help for “functions” and you’ll find the “List of all functions by category” for a full list of statistical, database, math, financial, and many, many, many more function types. Len Syntax: =LEN(text) Returns the number of characters in a text string – spaces count as characters. Suggestion: use to determine lengths of each line of address on a label. The US Post office only allows 46 characters per line for mass mailings (as of 2008). Another use is to determine number of characters in a text block for web or print content. Proper Syntax: =PROPER(text) Capitalizes the first letter of every word (as in “Rebecca Holte”). Trim Syntax: =TRIM(text) Removes extra spaces from text strings – leaves a single space between words (“Rebecca Holte” = “Rebecca Holte”). Rounding Adding/multiplying numbers obtained from formula sums, you may see different values than expected, due to the how many decimal points are used and when rounding occurs. You may wish to use a rounding or even/odd function. For “number” you can enter an actual number or cell reference, and “num_digits” indicates how many decimal places you require. Roundup and Rounddown Syntax: = ROUNDUP(number,num_digits) Even and Odd Syntax: =EVEN(number) Retrieved from "https://tutorials.ischool.utexas.edu/index.php/Excel:_Advanced_Formulas_and_Functions" Excel: Advanced Formulas and Functions - iSchool Tutorials https://tutorials.ischool.utexas.edu/index.php/Excel:_Advanced_Formula... 4 of 5 16/09/2015 1:18 PM
  • 5. Excel: Advanced Formulas and Functions - iSchool Tutorials https://tutorials.ischool.utexas.edu/index.php/Excel:_Advanced_Formula... 5 of 5 16/09/2015 1:18 PM