Excel Introduction To Formulas - Shastacoe

2y ago
68 Views
3 Downloads
315.80 KB
9 Pages
Last View : 27d ago
Last Download : 3m ago
Upload by : Evelyn Loftin
Transcription

Excel: Introduction to FormulasTable of ContentsFormulasArithmetic & Comparison Operators . 2Text Concatenation . 2Operator Precedence . 2UPPER, LOWER, PROPER and TRIM. 3& (Ampersand) . 4SUM. 5ROUND . 5COUNT. 6IF. 7Anchoring rows/columns with sign . 7Combining Formulas From Multiple worksheets . 8Practice Set . 9

FormulasArithmetic & Comparison OperatorsArithmetic & Comparison OperatorsOperatorMeaningExampleResult AdditionA1 B1Numeric Value‐Subtraction or NegativeA1‐B1Numeric Value*MultiplicationA1*B1Numeric Value/DivisionA1/B1Numeric Value Equal toA1 B1Logical Value (TRUE or FALSE) Greater thanA1 B1Logical Value (TRUE or FALSE) Less thanA1 B1Logical Value (TRUE or FALSE) Greater than or equal toA1 B1Logical Value (TRUE or FALSE) Less than or equal toA1 B1Logical Value (TRUE or FALSE) Not equal toA1 B1Logical Value (TRUE or FALSE)Text Concatenation OperatorsText Concatenation OperatorsOperator&MeaningExampleConnects, orconcatenates,multiplevalues toproduce oneWant to combine the values incontinuouscolumns A‐C. I added a space, viatext valuethe space bar, so the words wouldhave a space between them.ResultTheshows what the formula inD1 looks like. You can see the valuein D1 has the two words combinednicely.Operator PrecedenceIf you combine several operators in a single formula, Excel performs the operations in a specific order,described below. If operators within the same formula share the same precedence Excel then defaults2

from left to right. The user may change the order by which calculations are performed by usingparentheses.The following is an example of why the precedence needs to be understood and why it is important:Formula 5 2*3ResultCalculation11(2 times 3) plus 5 (5 2)*321(5 plus 2) times 3Operator PrecedenceOperatorMeaning* and /Multiplication and Division and ‐Addition and Subtraction&Text Concatenation Equal to Not equal to Less than or equal toGreater than or equal toUPPER, LOWER, PROPER, and TRIMThese formulas all work with text. After using one of these functions it is good practice to pastespecial\values so that they will remain in their desired formatting.1233

UPPER, LOWER, PROPER, and TRIMFormulaDescription UPPERConverts all text to upper case LOWERConverts all text to lower case PROPERCapitalizes the first letter in a text string and any other letters intext that follow any character other than a letter, i.e. a space.Converts all other letters to lowercase TRIMRemoves all blank, unnecessary spaces at the start and end of astring including extra spaces, tabs, and other characters thatdon’t print.& (Ampersand)The & connects, or concatenates, multiple values to produce one continuous text value. After using thisfunction it is good practice to paste special\values so that they will remain in their desired formatting.The finished product I want is to have Shasta County in one cell which I can accomplish with the &function. By combining the values in columns A and B I have accomplished my desired task, but quiteliterally. Note there is no space between the two words in cell C1.By adding a column to the right of column A and pressing the space bar once, creating a single space , andmodifying my formula to now include columns A – C, I now have a more readable result.Notice there is no spacebetween the two words.4Note if your data consists ofseveral rows you wouldneed to copy the blankspace in B1 all the way tothe last row.

SUMThe SUM function is the singularly most used function within Excel. It is used to total values in yourworksheets. These values may be continuous, noncontinuous, from different worksheets, etc, or a varietythereof.The syntax is SUM(number1,[number2],[.])An example of the formula is SUM(A1:A4). The English translation is add up all of the values found in therange of between A1 and A4, inclusive, and displays the result.Add up the values in this rangeAnd place the result hereNotice that I have one extra line within my formula. I do that on all of my formulas as a best practice. If Ineed to add any additional rows, by doing so above the blank row, I am ensured my formula will properlybe modified automatically.There are many variations to this formula, this is just one example.ROUNDThe ROUND function rounds a number to a specified number of digits. This should not be confused withformatting to a specified decimal places.The syntax is ROUND(number, num digits)Expanding our previous SUM formula from above, the formula is ROUND(SUM(A1:A4),2). The Englishtranslation is add up all of the values found in the range of between A1 and A4, inclusive, round the resultto two decimal places, and display the result .It is important not to confuse rounding to a specific number of decimals and formatting your cell to aspecific number of decimals. For example, if cell A5 below contains 18.44978. If we were to format the cellto two decimal places, 18.45 will be displayed. However, Excel still sees it as 18.44978 (Before picture). If I5

want Excel to see, and use in subsequent calculations, 18.45 I would need to have the following roundingformula in A5: ROUND(SUM(A1:A4),2) (After picture)Without ROUND FormulaWith ROUND FormulaCOUNTThe COUNT function counts the number of cells that contain numbers and counts numbers within the listof arguments.The syntax is COUNT( value1, value2, )Continuing on with our SUM formula from above, let’s not only add up the values of the range A1:A4, butlet’s count how many numbers are included within the range, i.e. how many cells within the range has avalue in it.The formula is COUNT(A1:A4). The English translation is count how many cells within the range has avalue in it and display the result.Notice that the range is exactly the same as ourSUM, A1:A4, which includes four rows. The valuereturned in cell A7 is three, because only three of thefour rows have values in them.If you are trying to count text, use the COUNTA formula which counts the non‐blank cells.6

IFThe formula makes a statement/question, if the answer is true then one response is obtained. If theanswer if false, then another answer is obtained.The syntax is IF(logical test,value if true,value if false)Continuing on with our SUM formula from above, let’s add some verbage to emphasize whether the resultis greater or less than twenty.The formula is if(A5 20,”Amount is less than twenty”,”Amount is more than twenty”). The Englishtranslation is if the value found in A5 is less than twenty THEN display the comment ‘Amount is less thantwenty’ ELSE display the comment ‘Amount is more than twenty’.Anchoring Rows and Columns With SignAs formulas are copied either the column reference increases or the row number depending on thedirection of the copy. If copying to the right through the spreadsheet, the column reference will increase;if copying down through the spreadsheet, the row references will increase.In order to overrule the automatic increment, place a dollar sign in front of the reference that you don’twant to change, the column, row, or both.Anchoring Rows and Columns With SignSourceFormula SUM(A1:A4)ActionCopy formula one cellto the rightDestinationFormula SUM(B1:B4)EffectColumn referencesincreased from A to Band A to B SUM( A1:A4)Copy formula one cellto the right SUM( A1:B4)Column references Astayed constant at A andincreased from A to B SUM(A1:A4)Copy formula one celldown SUM(A2:A5)Row referencesincreased from 1 to 2and 4 to 57

SUM(A 1:A4)Copy formula one celldown SUM( A 1: A 4) Copy formulaanywhere within thespreadsheet SUM(A 1:A5)Row references 1 stayedconstant at 1 andincreased from 2 to 5 SUM( A 1: A 4) Neither column nor rowreferences changedCombining Formulas Between Multiple WorksheetsData can be pulled from other worksheets and utilized on others. This function can be used for bothnumerical and text data. The formulas can combine one to many worksheets are ranges.For Example, this is extremely handy when one worksheet acts as a summary and recaps information fromthe detail worksheets. Our example below recaps sales on one sheet, while the monthly detail inmaintained on other sheets.Note the worksheet names of Summary, Jan, Feb, & Mar. We are working within the Summary worksheet,denoted by the tab color. The curser is in cell D6 which receives its information from the Januaryworksheet.8

PRACTICE SETUsing the data on the staff mileage data tab, perform the following steps:1.2.3.4.5.6.7.8.9.10.Insert rows and add the header. Change the font size to 12. Make bold and italize.Bold, underline, word wrap, and center headers.Sort employee data lines, skipping the budget row by employee name and dateUsing the PROPER command clean up the employees names.Using the SUM formula add totals to the adopted, revised, and actual columns.Add the top and bottom border to the sums.Add REMAINING BALANCE text and do a basic subtraction formula calculating the differencebetween the revised budget total and the actual to date.Add ‘NUMBER OF TRANSACTIONS TO DATE’ caption. Using the COUNT formula count the numberof transactions.Add a new column entitled ‘Remaining Balance (Revised vs Actual). Using basic subtractioncalculate the remaining balance on a per line basis.Your final product should look like this:9

Equal to Not equal to Less than or equal to Greater than or equal to UPPER, LOWER, PROPER, and TRIM These formulas all work with text. After using one of these functions it is good practice to paste special\values so

Related Documents:

Excel 5.0 Excel 5.0 1993 Excel 5.0 1993 Excel 7.0 Excel 95 1995 Excel 8.0 Excel 97 1997 Excel 98 1998 Excel 9.0 Excel 2000 1999 Excel 2001 2000 Excel 10.0 Excel XP 2001 Excel v.X 2001 Excel 11.0 Excel 2003 2003 Excel 2004 2004 2.1.2 Worksheet Document Definition: Worksheet Document A worksheet document consists of a single sheet only.

A Note about Array formulas (not for Excel 365 / Excel 2021) Sometimes, you will need to enter a formula as array formula. In Excel 365/Excel 2021, all formulas are treated as Array formula, hence you need not enter any formula as Array formula. Only for older versions of Excel, you might need to enter a formula as Array formula.

SHOW FORMULAS If you ever want to see formulas in a spreadsheet’s cells, rather than the calculated answer to the formula, click the Show Formulas button in the Formula Auditing group of the Formulas tab. Formulas will appear in the spreadsheet

Why should you learn Excel Formulas? Thanks for downloading this book. Excel is part of the Microsoft Office suite and the world’s most widely used spreadsheet application used by Millions. Compared to other Spreadsheet programs Excel is very feature rich and popular and incorporated with

Advanced Formulas 10 LESSON SKILL MATRIX . Using Formulas to Look up data in a workbook Adding Conditional Logic Functions to Formulas Using Formulas to Modify Text Demonstrate how to use the RIGHT, LEFT, and MID functions. 4.4.1 . Conditional formulas used in Excel include the functions SUMIF, COUNTIF, and AVERAGEIF that check for one .

Power Map Power Map provides a new perspective for your data by plotting geocoded data onto a three-dimensional view of the earth and optionally showing changes to that data over time. To use Power Map, you import raw data into a Microsoft Excel 2013 workbook, add the data to an Excel data model, and enhance the data in the data model if necessary.File Size: 1MBPage Count: 17Explore furtherGetting an excel list of all Azure Virtual machinesdbaharrison.blogspot.comDownload Azure Devops Board To Excelwww.how-use-excel.comGetting an excel list of all Azure Virtual machines .www.firstcloud.ioGetting an excel list of all Azure Virtual machines .laptrinhx.comRunning Excel On Azurewww.how-use-excel.comRecommended to you based on what's popular Feedback

Excel 2013 Formulas and Functions Contents at a Glance Introduction Part I Mastering Excel Ranges and Formulas 1 Getting the Most Out of Ranges . 4 Creating Advanced Formulas

Microsoft Excel 2019 Formulas and Functions. Published with the authorization of Microsoft Corporation by: Pearson Education, Inc. . Formula limits in Excel 2019 . 4. Entering and editing formulas . 4. Using arithmetic formulas .