• Complain

Sheikh - Microsoft Excel Advanced Functions and Formulas

Here you can read online Sheikh - Microsoft Excel Advanced Functions and Formulas full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2021, genre: Computer. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Sheikh Microsoft Excel Advanced Functions and Formulas
  • Book:
    Microsoft Excel Advanced Functions and Formulas
  • Author:
  • Genre:
  • Year:
    2021
  • Rating:
    4 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 80
    • 1
    • 2
    • 3
    • 4
    • 5

Microsoft Excel Advanced Functions and Formulas: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Microsoft Excel Advanced Functions and Formulas" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

Excel has its immense purposeful applications. 95% of the users apply the basic form. There are functions and advanced excel formula that can be used for complex calculations. The functions are designed for easy lookup and formatting of large pool of data whereas the advanced excel formula are implemented to get new information from a given particular set of data.

Sheikh: author's other books


Who wrote Microsoft Excel Advanced Functions and Formulas? Find out the surname, the name of the author of the book and a list of all author's works by series.

Microsoft Excel Advanced Functions and Formulas — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Microsoft Excel Advanced Functions and Formulas" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make

Excel Advanced Functions and Formulas Ahmed Sheikh MSc USA TABLE OF - photo 1 Excel Advanced Functions and FormulasAhmed Sheikh,M.Sc. (USA)TABLE OF CONTENTSUnit 1 Building complex formulas In this unit you will learn how to Work - photo 2Unit 1: Building complex formulasIn this unit, you will learn how to: Work with nesting functions Compare results between using a formula with nested IF vs. a VLOOKUP Use the VLOOKUP with the COLUMN function Source table structure information using CHOOSE function Use INDEX and MATCH to search for information Formulas and worksheet functions are essential to manipulating data and obtaining useful information from your Excel workbooks. This section includes formulas containing functions such as IF, AND, OR, NOT, CHOOSE, VLOOKUP, COLUMN, INDEX and MATCH and to make it more challenging the examples that will be used include combinations of these functions in the same formula. Using nested IF statements In Excel the 'IF' function is commonly used as it provides solutions for many complex and varying situations in Excel. Let's begin with a formula containing multiple IF functions, also known as a nested IF formula.

It is necessary to understand the syntax of this function which is as follows: IF(Logical Test, Value if True, IF(Logical Test, Value if True, IF(Logical Test, Value if True, Value if False))) In the above example there are three logical tests which produce a value if true followed by a final result if none of the IF statements are true. The following is an example showing grading comments based on score results. =IF(F2>=90,"Excellent", IF(F2>=70,"Very Good", IF(F2>=50,"Fair","Poor"))) To examine the formulas in more detail take a look at the following screenshot - photo 3To examine the formulas in more detail take a look at the following screenshot - photo 4 To examine the formulas in more detail take a look at the following screenshot showing the breakdown of the nested IF formula which produces the required results. Creating compound logical tests using AND, OR, NOT functions with IFstatements Using an IF function by itself in a formula works when there are no special conditions to be added. When the results are based on conditions then you have to nest the IF function with either the AND function or with the OR function. The AND function can hold up to 255 logical tests, however, to arrive at a result which is TRUE all the logical tests must be true.

This makes the AND function quite restrictive in its use. On the other hand the OR function, which can also hold up to 255 logical tests, requires that only one of its logical tests be true in order to arrive at a result which is TRUE. In the following screenshot the Excel spreadsheet represents sales data and we will be using the IF function together with AND, NOT and VLOOKUP to work out bonus calculations. To pay a 2% bonus for sales greater than 20000 we would use a formula with a simple IF function that would be as follows: =IF(F2>20000,0.02*F2,0) But what if we decided that the bonus would only be paid if the GP% is greater than 50% in addition to the first condition that sales must be greater than 20000? We could then use two IF functions one to deal with the first logical test and then the second to deal with the new logical test. The formula to produce the desired result would look like this: =IF(F2>20000,IF(I2>0.5,0.02*F2,0),0) The exact same result can be achieved by using the following formula which incorporates both the IF and the AND functions. =F2*0.02*(F2>20000)*(I2>0.5) This formula starts out by calculating a 2% bonus for everyone: F2*0.02. =F2*0.02*(F2>20000)*(I2>0.5) This formula starts out by calculating a 2% bonus for everyone: F2*0.02.

But then the formula continues with two additional terms both of which must be in parentheses. Excel treats (F2>20000) as a logical test and will evaluate that expression to either TRUE or FALSE and will do the same with (I2>0.5). So, for row 2 the intermediate step will appear as follows: =22810*0.02*TRUE*FALSE When Excel has to use TRUE or FALSE in a calculation, the TRUE is treated as a one. The FALSE is treated as a zero. Since any number times zero is zero, the logical tests at the end of the formula will wipe out the bonus if any one of the conditions is not true. The final step of the calculation will be as follows: =22810*0.02*1*0 which will equal zero.

In row 7, the calculation will be =21730*0.02*TRUE*TRUE which becomes =21730*0.02*1*1 giving a result of 434.60. Comparing a nested IF formula with VLOOKUP What if your bonus rates were based - photo 5Comparing a nested IF formula with VLOOKUP What if your bonus rates were based - photo 6Comparing a nested IF formula with VLOOKUP What if your bonus rates were based on a sliding scale? You could use a nested IF formula which would evaluate each level starting with the largest category first. The bonus table would look as follows: The formula would be: =IF(F3>20000,$N$6,IF(F3>15000,$N$7,IF(F3>10000,$N$8,IF(F3>7500,$N$9,IF(F3> 1000,$N$10,0)))))*F3 To produce the same result with a VLOOKUP function the bonus table must be modified to the following: The formula would be as follows: =VLOOKUP(F3,CommTable,2)*F3 where the range name 'CommTable' refers to M16:N21. Using the NOT function The NOT function can also be used in formulas to reverse the TRUE or FALSE result. We will use the NOT function in a formula which uses the IF function, together with the AND function. The formula will be as follows: =IF(NOT(AND(F3>20000,J3=$O$6)),F3*0.02,0) Cell F3 contains the sales value and cell O6 contains the rep's name.

Normally, the AND function will produce a result if both logical tests are true, but with the NOT function in the picture, the results are reversed. Nesting VLOOKUP functions A common practice in Excel is to download data from - photo 7Nesting VLOOKUP functions A common practice in Excel is to download data from other data sources. This often presents a problem when the data contains leading, trailing or extra unwanted spaces. So, when using a VLOOKUP function a lookup column containing trailing/extra spaces can cause #N/A errors to occur. The way around this is to add the TRIM function to the formula which immediately eliminates the spaces so that the lookup column data will match with the table array data. Should the table array have any unwanted spaces, this can be dealt with in a similar fashion but with an added twist to the formula.

The first result using TRIM before the table array will produce a #VALUE! error. This can be resolved by entering the formula by holding down the CTRL + SHIFT buttons and then pressing the enter key. This is known as an array formula and will be covered in more detail in a later unit called Array Functions. =VLOOKUP(TRIM(A2),Products,2,FALSE) =VLOOKUP(A11,Products,2,FALSE) Using VLOOKUP with the COLUMN function The formula - photo 8Using VLOOKUP with the COLUMN function The formula - photo 9Using VLOOKUP with the COLUMN function The formula =VLOOKUP($A4,$H$4:$L$227,2,FALSE) is in cell B4 in the above example. When this is copied across the row number will not change and therefore the results are all the same. This can be overcome by numbering B1 to 2, C1 to 3, D1 to 4 and E1 to 5 then modifying the formula to the following =VLOOKUP($A4,$H$4:$L$227,B$1,FALSE).

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Microsoft Excel Advanced Functions and Formulas»

Look at similar books to Microsoft Excel Advanced Functions and Formulas. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Microsoft Excel Advanced Functions and Formulas»

Discussion, reviews of the book Microsoft Excel Advanced Functions and Formulas and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.